@charset "UTF-8";

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
line-height: 1.6;
color: #2c3e50;
}
.container { margin: 0 auto;
padding: 0 20px;
}
.header {
background: transparent;
box-shadow: none;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
transition: background 0.6s, box-shadow 0.6s;
}
.header.scrolled {
background: rgba(255, 255, 255, 0.97);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-top {
background: #008751;
color: #ffffff;
padding: 8px 0;
font-size: 14px;
}
.header-top .contact-info {
display: flex;
gap: 30px;
}
.header-top .contact-info span {
display: flex;
align-items: center;
gap: 8px;
}
.header-top .contact-info i {
font-size: 12px;
}
.navbar {
padding: 10px 0;
}
.navbar .nav-container {
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar .logo {
display: flex;
align-items: center;
gap: 12px;
}
.navbar .logo img {
width: 50px;
height: 50px;
}
.navbar .logo .logo-text h3 {
font-size: 15px;
font-weight: 600;
color: #ffffff;
line-height: 1.2;
}
.navbar .logo .logo-text p {
font-size: 11px;
color: rgb(169, 185, 186);
}
.navbar .nav-menu {
display: flex;
list-style: none;
gap: 30px;
}
.navbar .nav-menu a {
text-decoration: none;
color: #ffffff;
font-weight: 500;
font-size: 12px;
transition: color 0.3s ease;
}
.navbar .nav-menu a:hover, .navbar .nav-menu a.active {
color: #ff6b35;
font-weight: 700;
}
.navbar .cta-button {
background: #ff6b35;
color: #ffffff;
padding: 6px 18px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 11px;
transition: background 0.3s ease;
}
.navbar .cta-button:hover {
background: rgb(255, 69.6336633663, 2);
}
.navbar .mobile-menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}
.navbar .mobile-menu-toggle span {
width: 25px;
height: 3px;
background: #2c3e50;
margin: 3px 0;
transition: 0.3s;
}
.header.scrolled .navbar .nav-menu a {
color: #2c3e50;
}
.header.scrolled .navbar .nav-menu a.active,
.header.scrolled .navbar .nav-menu a:hover {
color: #008751;
}
.header.scrolled .navbar .logo .logo-text h3 {
color: #2c3e50;
}
.header.scrolled .navbar .logo .logo-text p {
color: #7f8c8d;
}
.hero {
position: relative;
height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
padding-top: 0;
}
.hero .hero-carousel {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
overflow: hidden;
}
.hero .hero-carousel::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 135, 81, 0.5);
z-index: 1;
}
.hero .hero-carousel .carousel-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.7s;
pointer-events: none;
}
.hero .hero-carousel .carousel-slide img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.hero .hero-carousel .carousel-slide.active {
opacity: 1;
pointer-events: auto;
}
.hero .hero-carousel .carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background: rgba(0, 0, 0, 0.3);
color: #fff;
display: none;
border: none;
font-size: 32px;
padding: 8px 16px;
border-radius: 50%;
cursor: pointer;
z-index: 2;
transition: background 0.3s;
}
.hero .hero-carousel .carousel-arrow:hover {
background: rgba(0, 0, 0, 0.6);
}
.hero .hero-carousel .carousel-arrow.left {
left: 30px;
}
.hero .hero-carousel .carousel-arrow.right {
right: 30px;
}
.hero .hero-carousel .carousel-dots {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 10px;
z-index: 2;
}
.hero .hero-carousel .carousel-dots .dot {
width: 12px;
height: 12px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.5);
border: 2px solid #fff;
cursor: pointer;
transition: background 0.3s, border 0.3s;
}
.hero .hero-carousel .carousel-dots .dot.active {
background: #ff6b35;
border-color: #ff6b35;
}
.hero .hero-background {
display: none;
}
.hero .hero-content {
position: relative;
z-index: 2;
}
.hero .hero-text {
max-width: 600px;
color: #ffffff;
}
.hero .hero-text .hero-subtitle {
font-size: 16px;
font-weight: 400;
margin-bottom: 10px;
display: block;
}
.hero .hero-text h1 {
font-size: 48px;
font-weight: 700;
line-height: 1.2;
margin-bottom: 10px;
}
.hero .hero-text h2 {
font-size: 32px;
font-weight: 600;
margin-bottom: 20px;
color: rgba(255, 255, 255, 0.9);
}
.hero .hero-text p {
font-size: 18px;
line-height: 1.6;
margin-bottom: 30px;
color: rgba(255, 255, 255, 0.9);
}
.hero .hero-text .hero-button {
background: #ff6b35;
color: #ffffff;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
font-size: 16px;
display: inline-block;
transition: background 0.3s ease;
}
.hero .hero-text .hero-button:hover {
background: rgb(255, 69.6336633663, 2);
}
.featured-services {
padding: 80px 0;
background: #ffffff;
}
.featured-services .services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}
.featured-services .service-card {
text-align: center;
padding: 40px 30px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.featured-services .service-card:hover {
transform: translateY(-5px);
}
.featured-services .service-card .service-icon {
width: 80px;
height: 80px;
background: #008751;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
}
.featured-services .service-card .service-icon i {
font-size: 32px;
color: #ffffff;
}
.featured-services .service-card h3 {
font-size: 24px;
font-weight: 600;
margin-bottom: 15px;
color: #2c3e50;
}
.featured-services .service-card p {
color: #7f8c8d;
line-height: 1.6;
}
.features-list {
padding: 80px 0;
background: #f8f9fa;
}
.features-list .section-header {
text-align: center;
margin-bottom: 60px;
}
.features-list .section-header h2 {
font-size: 36px;
font-weight: 600;
margin-bottom: 15px;
color: #2c3e50;
}
.features-list .section-header p {
font-size: 18px;
color: #7f8c8d;
}
.features-list .features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.features-list .feature-item {
display: flex;
align-items: flex-start;
gap: 20px;
padding: 30px;
background: #ffffff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.features-list .feature-item .feature-icon {
width: 60px;
height: 60px;
background: #ff6b35;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.features-list .feature-item .feature-icon i {
font-size: 24px;
color: #ffffff;
}
.features-list .feature-item h4 {
font-size: 18px;
font-weight: 600;
margin-bottom: 8px;
color: #2c3e50;
}
.features-list .feature-item p {
color: #7f8c8d;
line-height: 1.5;
}
.news-cta {
padding: 60px 0;
background: #008751;
color: #ffffff;
text-align: center;
}
.news-cta .cta-content {
max-width: 600px;
margin: 0 auto;
}
.news-cta .cta-content h2 {
font-size: 32px;
font-weight: 600;
margin-bottom: 15px;
}
.news-cta .cta-content p {
font-size: 18px;
margin-bottom: 30px;
opacity: 0.9;
}
.news-cta .cta-content .cta-link {
color: #ffffff;
text-decoration: none;
font-size: 18px;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 10px;
border-bottom: 2px solid transparent;
transition: border-color 0.3s ease;
}
.news-cta .cta-content .cta-link:hover {
border-color: #ffffff;
}
.consul-message {
padding: 80px 0;
background: #ffffff;
}
.consul-message .message-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.consul-message .message-text .message-subtitle {
color: #008751;
font-weight: 600;
font-size: 14px;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 10px;
display: block;
}
.consul-message .message-text h2 {
font-size: 36px;
font-weight: 600;
margin-bottom: 20px;
color: #2c3e50;
}
.consul-message .message-text p {
font-size: 16px;
line-height: 1.6;
color: #7f8c8d;
margin-bottom: 20px;
}
.consul-message .message-text .message-button {
background: #008751;
color: #ffffff;
padding: 12px 30px;
text-decoration: none;
border-radius: 5px;
font-weight: 600;
display: inline-block;
margin-top: 10px;
transition: background 0.3s ease;
}
.consul-message .message-text .message-button:hover {
background: rgb(0, 84, 50.4);
}
.consul-message .message-image img {
width: 100%;
height: 400px;
-o-object-fit: cover;
object-fit: cover;
border-radius: 10px;
}
.blog-section {
padding: 80px 0;
background: #f8f9fa;
}
.blog-section .section-header {
text-align: center;
margin-bottom: 60px;
}
.blog-section .section-header h2 {
font-size: 36px;
font-weight: 600;
margin-bottom: 15px;
color: #2c3e50;
}
.blog-section .section-header p {
font-size: 18px;
color: #7f8c8d;
}
.blog-section .blog-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 30px;
}
.blog-section .blog-card {
background: #ffffff;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.blog-section .blog-card:hover {
transform: translateY(-5px);
}
.blog-section .blog-card .blog-image {
height: 200px;
overflow: hidden;
}
.blog-section .blog-card .blog-image img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.blog-section .blog-card .blog-content {
padding: 25px;
}
.blog-section .blog-card .blog-content .blog-category {
background: #008751;
color: #ffffff;
padding: 4px 12px;
border-radius: 15px;
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
}
.blog-section .blog-card .blog-content h3 {
font-size: 20px;
font-weight: 600;
margin: 15px 0 10px;
color: #2c3e50;
}
.blog-section .blog-card .blog-content p {
color: #7f8c8d;
line-height: 1.6;
margin-bottom: 15px;
}
.blog-section .blog-card .blog-content .blog-meta {
display: flex;
justify-content: space-between;
font-size: 14px;
color: #7f8c8d;
}
.footer {
background: #2c3e50;
color: #ffffff;
padding: 60px 0 20px;
}
.footer .footer-content {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 40px;
margin-bottom: 40px;
}
.footer .footer-section .footer-logo {
display: flex;
flex-direction: column;
align-items: center;
text-align: justify;
gap: 15px;
margin-bottom: 12px;
}
.footer .footer-section .footer-logo img {
width: 60px;
height: 60px;
}
.footer .footer-section .footer-logo h4 {
font-size: 13px;
font-weight: 600;
margin-bottom: 2px;
}
.footer .footer-section .footer-logo p {
font-size: 11px;
opacity: 0.8;
}
.footer .footer-section h4 {
font-size: 14px;
font-weight: 600;
margin-bottom: 15px;
}
.footer .footer-section p {
opacity: 0.8;
line-height: 1.6;
}
.footer .footer-section ul {
list-style: none;
}
.footer .footer-section ul li {
margin-bottom: 10px;
}
.footer .footer-section ul li a {
color: #ffffff;
text-decoration: none;
opacity: 0.8;
transition: opacity 0.3s ease;
}
.footer .footer-section ul li a:hover {
opacity: 1;
}
.footer .footer-section .contact-item {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 15px;
}
.footer .footer-section .contact-item i {
width: 20px;
color: #008751;
}
.footer .footer-section .contact-item span {
opacity: 0.8;
}
.footer .footer-section.footer-map {
min-width: 250px;
max-width: 350px;
}
.footer .footer-section.footer-map .map-embed {
width: 100%;
height: 180px;
}
.footer .footer-section.footer-map .map-embed iframe {
width: 100%;
height: 100%;
border: 0;
border-radius: 8px;
}
.footer .footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 20px;
text-align: center;
}
.footer .footer-bottom p {
opacity: 0.6;
font-size: 14px;
}
@media (max-width: 1200px) {
.footer-content {
grid-template-columns: repeat(3, 1fr);
}
.footer-content .footer-section.footer-map {
grid-column: span 3;
max-width: 100%;
margin-top: 20px;
}
}
@media (max-width: 900px) {
.footer-content {
grid-template-columns: 1fr 1fr;
}
.footer-content .footer-section.footer-map {
grid-column: span 2;
max-width: 100%;
margin-top: 20px;
}
}
@media (max-width: 768px) {
.header-top .contact-info {
flex-direction: column;
gap: 10px;
}
.navbar .nav-menu {
display: none;
}
.navbar .mobile-menu-toggle {
display: flex;
}
.hero .hero-text h1 {
font-size: 36px;
}
.hero .hero-text h2 {
font-size: 24px;
}
.consul-message .message-content {
grid-template-columns: 1fr;
gap: 40px;
}
.services-grid,
.features-grid,
.blog-grid {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr 1fr;
}
.footer-content .footer-section.footer-map {
grid-column: span 2;
max-width: 100%;
margin-top: 20px;
}
}
@media (max-width: 600px) {
.footer-content {
grid-template-columns: 1fr;
}
.footer-content .footer-section.footer-map {
grid-column: auto;
margin-top: 20px;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.hero {
margin-top: 100px;
}
.hero .hero-text h1 {
font-size: 28px;
}
.hero .hero-text h2 {
font-size: 20px;
}
.hero .hero-text p {
font-size: 16px;
}
.section-header h2 {
font-size: 28px;
}
.features-grid {
grid-template-columns: 1fr;
}
.feature-item {
padding: 20px;
}
} .page-header {
position: relative;
min-height: 60vh;
display: flex;
align-items: center;
overflow: hidden;
}
.page-header-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
}
.page-header-image {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}
.page-header-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 135, 81, 0.6) 0%, rgba(0, 104, 62, 0.4) 100%);
z-index: 1;
}
.page-header-content {
color: white;
text-align: center;
}
.breadcrumb {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-bottom: 20px;
font-size: 14px;
opacity: 0.9;
}
.breadcrumb a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
}
.breadcrumb a:hover {
color: white;
}
.page-header h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: 15px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.page-header p {
font-size: 1.2rem;
opacity: 0.9;
}
.registration-section {
padding: 80px 0;
background: #f8f9fa;
}
.registration-section .registration-content {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 60px;
align-items: flex-start;
}
.registration-section .registration-info h2 {
font-size: 28px;
font-weight: 600;
margin-bottom: 30px;
color: #2c3e50;
}
.registration-section .registration-info .info-card {
background: #ffffff;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 30px;
}
.registration-section .registration-info .info-card h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
color: #008751;
}
.registration-section .registration-info .info-card ul {
list-style: none;
}
.registration-section .registration-info .info-card ul li {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.registration-section .registration-info .info-card ul li i {
color: #008751;
font-size: 14px;
}
.registration-section .registration-info .info-card .processing-item {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 20px;
}
.registration-section .registration-info .info-card .processing-item i {
width: 20px;
height: 20px;
background: #008751;
color: #ffffff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
margin-top: 2px;
}
.registration-section .registration-info .info-card .processing-item strong {
display: block;
margin-bottom: 5px;
color: #2c3e50;
}
.registration-section .registration-info .info-card .processing-item p {
color: #7f8c8d;
margin: 0;
}
.registration-section .registration-form {
background: #ffffff;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.registration-section .registration-form h2 {
font-size: 28px;
font-weight: 600;
margin-bottom: 30px;
color: #2c3e50;
text-align: center;
}
.registration-section .registration-form .form-section {
margin-bottom: 40px;
}
.registration-section .registration-form .form-section h3 {
font-size: 20px;
font-weight: 600;
margin-bottom: 20px;
color: #008751;
border-bottom: 2px solid #e1e8ed;
padding-bottom: 10px;
}
.registration-section .registration-form .form-row {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 20px;
}
.registration-section .registration-form .form-group label {
display: block;
margin-bottom: 8px;
font-weight: 500;
color: #2c3e50;
}
.registration-section .registration-form .form-group label::after {
content: " *";
color: #ff6b35;
}
.registration-section .registration-form .form-group input,
.registration-section .registration-form .form-group select {
width: 100%;
padding: 12px 15px;
border: 2px solid #e1e8ed;
border-radius: 5px;
font-size: 16px;
transition: border-color 0.3s ease;
}
.registration-section .registration-form .form-group input:focus,
.registration-section .registration-form .form-group select:focus {
outline: none;
border-color: #008751;
}
.registration-section .registration-form .form-group input:required:invalid,
.registration-section .registration-form .form-group select:required:invalid {
border-color: #ff6b35;
}
.registration-section .registration-form .form-group select {
cursor: pointer;
}
.registration-section .registration-form .checkbox-group {
display: flex;
align-items: flex-start;
gap: 12px;
margin-bottom: 20px;
}
.registration-section .registration-form .checkbox-group input[type=checkbox] {
width: auto;
margin-top: 4px;
transform: scale(1.2);
}
.registration-section .registration-form .checkbox-group label {
flex: 1;
line-height: 1.5;
}
.registration-section .registration-form .checkbox-group label::after {
display: none;
}
.registration-section .registration-form .form-actions {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 40px;
}
.registration-section .registration-form .form-actions .submit-button {
background: #008751;
color: #ffffff;
padding: 15px 40px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: background 0.3s ease;
}
.registration-section .registration-form .form-actions .submit-button:hover {
background: rgb(0, 84, 50.4);
}
.registration-section .registration-form .form-actions .reset-button {
background: transparent;
color: #7f8c8d;
padding: 15px 40px;
border: 2px solid #e1e8ed;
border-radius: 5px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.registration-section .registration-form .form-actions .reset-button:hover {
border-color: #7f8c8d;
color: #2c3e50;
} .info-sections {
padding: 100px 0;
background: linear-gradient(135deg, rgba(248, 255, 254, 0.8) 0%, rgba(240, 249, 244, 0.9) 100%);
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}
.info-card {
background: rgba(255, 255, 255, 0.8);
padding: 40px 30px;
border-radius: 20px;
text-align: center;
transition: all 0.3s ease;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.info-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px rgba(0, 135, 81, 0.15);
background: rgba(255, 255, 255, 0.95);
}
.info-icon {
margin-bottom: 25px;
}
.info-icon img {
width: 60px;
height: 60px;
filter: drop-shadow(0 4px 8px rgba(0, 135, 81, 0.2));
}
.info-card h3 {
font-size: 1.5rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 15px;
}
.info-card p {
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}
.info-list {
list-style: none;
text-align: left;
margin-bottom: 25px;
}
.info-list li {
padding: 8px 0;
color: #555;
position: relative;
padding-left: 20px;
}
.info-list li::before {
content: "✓";
position: absolute;
left: 0;
color: #008751;
font-weight: bold;
}
.info-link {
color: #008751;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.info-link:hover {
color: #00a862;
}
.featured-services-detailed {
padding: 100px 0;
background: linear-gradient(135deg, rgba(0, 135, 81, 0.05) 0%, rgba(0, 104, 62, 0.08) 100%);
}
.services-detailed-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 40px;
}
.service-detailed-card {
background: rgba(255, 255, 255, 0.9);
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-detailed-card:hover {
transform: translateY(-10px);
box-shadow: 0 25px 50px rgba(0, 135, 81, 0.2);
}
.service-image {
position: relative;
height: 200px;
overflow: hidden;
}
.service-image img {
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
transition: all 0.3s ease;
}
.service-detailed-card:hover .service-image img {
transform: scale(1.05);
}
.service-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(0, 135, 81, 0.7) 0%, rgba(0, 104, 62, 0.5) 100%);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.3s ease;
}
.service-detailed-card:hover .service-overlay {
opacity: 1;
}
.service-icon-large img {
width: 50px;
height: 50px;
filter: brightness(0) invert(1);
}
.service-content {
padding: 30px;
}
.service-content h3 {
font-size: 1.4rem;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 15px;
}
.service-content p {
color: #666;
margin-bottom: 20px;
line-height: 1.6;
}
.service-features {
list-style: none;
margin-bottom: 25px;
}
.service-features li {
padding: 5px 0;
color: #555;
position: relative;
padding-left: 20px;
font-size: 0.95rem;
}
.service-features li::before {
content: "•";
position: absolute;
left: 0;
color: #008751;
font-weight: bold;
}
.service-meta {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding: 15px;
background: rgba(0, 135, 81, 0.05);
border-radius: 10px;
}
.processing-time {
font-size: 0.9rem;
color: #666;
}
.service-fee {
font-weight: 600;
color: #008751;
font-size: 1.1rem;
} .faqs-section {
padding: 100px 0;
background: linear-gradient(135deg, rgba(248, 255, 254, 0.9) 0%, rgba(240, 249, 244, 0.8) 100%);
}
.faqs-grid {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: rgba(255, 255, 255, 0.8);
margin-bottom: 20px;
border-radius: 15px;
overflow: hidden;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
}
.faq-item:hover {
box-shadow: 0 10px 25px rgba(0, 135, 81, 0.12);
background: rgba(255, 255, 255, 0.95);
}
.faq-question {
padding: 25px 30px;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.faq-question:hover {
background: rgba(0, 135, 81, 0.05);
}
.faq-question h4 {
font-size: 1.1rem;
font-weight: 600;
color: #1a1a1a;
margin: 0;
}
.faq-toggle {
font-size: 1.5rem;
font-weight: bold;
color: #008751;
transition: all 0.3s ease;
}
.faq-answer {
padding: 0 30px 25px;
display: none;
color: #666;
line-height: 1.6;
} .services-cta {
padding: 100px 0;
background: linear-gradient(135deg, rgba(0, 135, 81, 0.9) 0%, rgba(0, 104, 62, 0.8) 100%);
color: white;
}
.services-cta .cta-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}
.services-cta .cta-text h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 20px;
}
.services-cta .cta-text p {
font-size: 1.2rem;
margin-bottom: 30px;
opacity: 0.95;
line-height: 1.7;
}
.cta-features {
display: flex;
gap: 30px;
margin-bottom: 30px;
}
.cta-feature {
display: flex;
align-items: center;
gap: 10px;
}
.feature-icon {
background: rgba(255, 255, 255, 0.2);
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 14px;
}
.cta-buttons {
display: flex;
gap: 20px;
}
.services-cta .cta-image img {
width: 100%;
border-radius: 15px;
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
} @media (max-width: 768px) {
.hero-content,
.cta-content,
.message-content {
grid-template-columns: 1fr;
gap: 40px;
}
.hero-title {
font-size: 2.5rem;
}
.hero-location {
font-size: 1.5rem;
}
.nav-menu {
display: none;
}
.services-grid,
.services-list,
.blog-grid {
grid-template-columns: 1fr;
}
.contact-info {
flex-direction: column;
gap: 10px;
text-align: center;
}
.page-header h1 {
font-size: 2rem;
}
.info-grid,
.services-detailed-grid {
grid-template-columns: 1fr;
}
.services-cta .cta-content {
grid-template-columns: 1fr;
gap: 40px;
}
.cta-features {
flex-direction: column;
gap: 15px;
}
.services-cta .cta-text h2 {
font-size: 2rem;
}
.service-meta {
flex-direction: column;
gap: 10px;
text-align: center;
}
}
@media (max-width: 1024px) {
.registration-content {
grid-template-columns: 1fr;
gap: 40px;
}
.footer-content {
grid-template-columns: 1fr 1fr;
}
.footer-content .footer-section.footer-map {
grid-column: span 2;
max-width: 100%;
margin-top: 20px;
}
}
@media (max-width: 768px) {
.page-header {
padding: 120px 0 60px;
}
.page-header .page-header-content h1 {
font-size: 36px;
}
.registration-form {
padding: 30px 20px;
}
.form-row {
grid-template-columns: 1fr;
gap: 15px;
}
.form-actions {
flex-direction: column;
}
.form-actions .submit-button,
.form-actions .reset-button {
width: 100%;
}
}
@media (max-width: 480px) {
.page-header .page-header-content h1 {
font-size: 28px;
}
.registration-form {
padding: 20px 15px;
}
}  .hero {
position: relative;
width: 100%;
height: 90vh; overflow: hidden;
}
.hero-carousel {
position: relative;
width: 100%;
height: 100%;
} .carousel-slide {
position: absolute !important;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: none;
}
.carousel-slide.active {
display: block;
} .carousel-slide img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
} .hero::before {
content: "";
position: absolute;
inset: 0;
background: rgba(0,0,0,0.4);
z-index: 1;
} .hero .container {
position: relative;
z-index: 2;
height: 100%;
display: flex;
align-items: center;
}
.hero-text {
color: #fff;
max-width: 650px;
}