:root {
    --primary-color: #6a9c89;
    --secondary-color: #f0ece2;
    --accent-color: #e8ae68;
    --dark-color: #1e3231;
    --light-color: #ffffff;
    --gray-color: #f6f6f6;
    --text-color: #333333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s ease;
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Increased padding to accommodate fixed header */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: var(--accent-color);
    color: var(--light-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232, 174, 104, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 174, 104, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(106, 156, 137, 0.1) 0%, rgba(232, 174, 104, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(var(--primary-color), transparent 70%);
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(var(--accent-color), transparent 70%);
    opacity: 0.1;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
    z-index: -1;
    opacity: 0.5;
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--light-color);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    background: rgba(106, 156, 137, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.hero-badge-text {
    font-weight: 600;
    font-size: 14px;
}

.pre-title {
    display: inline-block;
    background: rgba(106, 156, 137, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    margin-bottom: 20px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Features Section */
.features {
    padding: 20px 0 10px;
    background-color: var(--light-color);
    margin-top: -20px;
}

.features .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.features .section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonials .section-title {
    color:#e8ae68 !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5px;
}

/* Section Footer - Redesign Completo */
.section-footer {
    margin-top: 80px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f2f2f2 100%);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.section-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 1;
}

.section-footer-wrapper {
    display: flex;
    align-items: stretch;
    min-height: 300px;
}

.section-footer-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.section-footer-quote {
    position: relative;
    margin-bottom: 30px;
}

.section-footer-quote-icon {
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 40px;
    color: var(--accent-color);
    opacity: 0.2;
}

.section-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
    position: relative;
}

.section-footer-divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 25px 0;
}

.section-footer-description p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.section-footer-highlights {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.section-footer-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-footer-highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 156, 137, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-footer-highlight-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 156, 137, 0.2) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.section-footer-highlight:hover .section-footer-highlight-icon {
    background: rgba(106, 156, 137, 0.2);
    transform: translateY(-5px);
}

.section-footer-highlight:hover .section-footer-highlight-icon::before {
    transform: scale(2);
}

.section-footer-highlight span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.section-footer-visual {
    position: relative;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d7a66 100%);
    overflow: hidden;
}

.section-footer-decoration {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-footer-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.section-footer-leaf {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: float 3s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-footer-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.section-footer-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.section-footer-circle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: -30px;
    animation: pulse 6s ease-in-out infinite;
}

.section-footer-circle:nth-child(2) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: -20px;
    animation: pulse 4s ease-in-out infinite 1s;
}

.section-footer-circle:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 30%;
    animation: pulse 5s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsiveness for section-footer */
@media (max-width: 992px) {
    .section-footer-wrapper {
        flex-direction: column;
    }
    
    .section-footer-visual {
        width: 100%;
        height: 150px;
    }
    
    .section-footer-content {
        padding: 40px 30px;
    }
    
    .section-footer-title {
        font-size: 24px;
    }
    
    .section-footer-highlights {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-footer {
        margin-top: 60px;
        border-radius: 16px;
    }
    
    .section-footer-content {
        padding: 30px 25px;
        text-align: left;
    }
    
    .section-footer-quote-icon {
        top: -10px;
        left: -10px;
    font-size: 30px;
    }
    
    .section-footer-title {
        font-size: 22px;
    }
    
    .section-footer-divider {
        margin: 20px 0;
        width: 60px;
    }
    
    .section-footer-description p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .section-footer-highlights {
        gap: 15px;
        justify-content: flex-start;
    }
    
    .section-footer-highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-footer-highlight span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-footer {
        margin-top: 40px;
    }
    
    .section-footer-visual {
        height: 120px;
    }
    
    .section-footer-content {
        padding: 25px 20px;
    }
    
    .section-footer-title {
        font-size: 20px;
    }
    
    .section-footer-leaf {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .section-footer-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .section-footer-highlight {
        flex-direction: row;
        text-align: left;
        gap: 10px;
        align-items: center;
    }
    
    .section-footer-highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 0;
    }
}

.section-title {
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
    color: var(--light-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-text {
    transition: var(--transition);
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--primary-color), transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--accent-color);
    top: 20px;
    left: 20px;
    border-radius: 20px;
    z-index: -1;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.about-text {
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(106, 156, 137, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-text {
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(106, 156, 137, 0.1) 0%, rgba(232, 174, 104, 0.1) 100%);
}

.services .section-title {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services .section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.services .section-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.2s;
}

.services .section-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(106, 156, 137, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
}

.service-desc {
    margin-bottom: 20px;
}

.service-link {
    margin-top: auto;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* Testimonials */
.testimonials {
    padding: 0 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

/* Testimonial Swiper Slider */
.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 30px 0;
}

.testimonial-cta {
    text-align: center;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.swiper {
    width: 100%;
    padding-bottom: 60px;
}

.testimonial-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(106, 156, 137, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 18px;
}

.testimonial-role {
    color: #777;
    font-size: 14px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.testimonial-rating i {
    color: #FFD700;
}

/* Swiper Navigation and Pagination */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color) !important;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--light-color) !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 25px;
    border-radius: 10px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(41, 84, 68, 1) 100%);
    color: var(--light-color);
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.2;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.cta-content {
    flex: 1;
    max-width: 700px;
}

.cta-title {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    position: relative;
}

.cta-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 20px;
}

.cta-text {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
}

.cta-btn {
    background: var(--accent-color);
    padding: 16px 36px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--accent-color);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-decoration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 6s infinite alternate;
}

.cta-circle::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: 25px;
    left: 25px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    animation: pulse 4s infinite alternate-reverse;
}

.cta-leaf {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.cta-leaf i {
    font-size: 48px;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(232, 174, 104, 0.5);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Media queries for CTA section */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .cta-content {
        text-align: center;
        max-width: 100%;
    }
    
    .cta-title::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .cta-decoration {
        width: 200px;
        height: 200px;
    }
    
    .cta-circle {
        width: 180px;
        height: 180px;
    }
    
    .cta-circle::after {
        width: 140px;
        height: 140px;
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-content {
        text-align: left;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-title::after {
        margin-left: 0;
        margin-right: 0;
    }
    
    .cta-text {
        font-size: 16px;
        margin-bottom: 25px;
        text-align: left;
}

.cta-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 16px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    /* Ajuste do espaçamento no hero para mobile */
    .hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-decoration {
        width: 150px;
        height: 150px;
    }
    
    .cta-circle {
        width: 130px;
        height: 130px;
    }
    
    .cta-circle::after {
        width: 100px;
        height: 100px;
        top: 15px;
        left: 15px;
    }
    
    .cta-leaf {
        width: 70px;
        height: 70px;
    }
    
    .cta-leaf i {
        font-size: 32px;
    }

    /* Ajuste adicional para telas muito pequenas */
    .hero {
        padding: 100px 0 70px;
    }

    .cta-btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 16px;
        margin: 0 auto;
        display: block;
        text-align: center;
        border-radius: 40px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        font-weight: 700;
        letter-spacing: 0.5px;
        background: var(--accent-color);
        color: white;
        transition: all 0.3s ease;
    }
    
    .cta-btn:active {
        transform: scale(0.98);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
}

/* FAQ Section */
.faq {
    padding: 5px 0;
    background-color: var(--light-color);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 30px;
    background: var(--light-color);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--primary-color);
}

.faq-question.active {
    background: var(--primary-color);
    color: var(--light-color);
}

.faq-question.active::after {
    content: '-';
    color: var(--light-color);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 5px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(var(--accent-color), transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.contact-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 40px 35px;
    background: #e8ae68;
    color: var(--light-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-text {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 16px;
    line-height: 1.6;
}

.contact-cta {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--light-color);
    opacity: 0.95;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
}

.contact-social-wrapper {
    margin-top: auto;
    position: relative;
    z-index: 5;
}

.contact-social {
    display: flex;
    gap: 15px;
    position: relative;
    z-index: 5;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Coluna do formulário */
.contact-form {
    flex: 1.5;
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow);
}

.form-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(106, 156, 137, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 60px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.form-col .form-group {
    margin-bottom: 0;
}

.form-preferences {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.form-preference-group {
    flex: 1;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-item label {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--dark-color);
    transform: translateY(-3px);
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 70px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-text {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--light-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    opacity: 0.7;
    font-size: 14px;
    margin-bottom: 10px;
}

.developer-credit {
    opacity: 0.7;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
}

.developer-credit .fa-heart {
    color: #ff6b6b;
    margin: 0 3px;
}

.developer-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.developer-link:hover {
    color: var(--light-color);
}

/* Floating Elements */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }

    .form-preferences {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--light-color);
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 10px 0;
        border-bottom: 1px solid rgba(106, 156, 137, 0.1);
    }
    
    .mobile-menu-btn {
        display: block;
        padding: 10px;
        transition: var(--transition);
    }

    .mobile-menu-btn.active {
        transform: rotate(90deg);
    }
    
    .hero-container,
    .about-container,
    .contact-container {
        flex-direction: column;
    }
    
    .hero-content,
    .contact-info {
        text-align: center;
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-content .about-title,
    .about-content .about-text,
    .about-content .about-features,
    .about-content .btn {
        text-align: left;
        align-self: flex-start;
    }
    
    .about-feature {
        justify-content: flex-start;
    }
    
    .about-image::after,
    .hero-image::before {
        display: none;
    }
    
    .hero-badge {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-details {
        margin-bottom: 20px;
    }
    
    .contact-social-wrapper {
        margin-top: 20px;
        text-align: center;
    }
    
    .contact-social {
        justify-content: center;
    }

    .hero-subtitle {
        text-align: left;
    }

    .section-subtitle {
        text-align: left;
    }

    .approach-explanation {
        width: 95%;
        max-width: 95%;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(106, 156, 137, 0.25);
    }

    .approach-explanation-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .approach-explanation p {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 15px;
        width: 100%;
        text-align: left !important;
        display: block;
        padding: 0;
        word-spacing: -1px;
        word-break: break-word;
    }

    .approach-explanation .btn {
        padding: 12px 15px;
        font-size: 14px;
        width: auto;
        min-width: 0;
        max-width: none;
        align-self: center;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
        height: auto;
    }

    /* Contact section mobile alignment */
    .contact-text,
    .contact-cta {
        text-align: left;
    }

    .about-content .btn {
        display: block;
        margin: 30px auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-preferences {
        flex-direction: column;
        gap: 20px;
    }
    
    .radio-group {
        flex-direction: column;
    }

    .approach-explanation {
        margin: 30px auto;
    }
    
    .approach-explanation-visual {
        min-height: 120px;
    }
    
    .approach-explanation-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .approach-explanation-content {
        padding: 25px 20px;
    }
    
    .approach-explanation-title {
        font-size: 20px;
    }
    
    .approach-explanation-content p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .approach-explanation-highlights li {
        font-size: 14px;
    }

    .nav-links {
        top: 70px;
        padding: 15px;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 0;
    }

    .section-footer {
        padding: 25px 15px;
    }

    .section-footer h4 {
        font-size: 22px;
    }

    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
        margin: 15px -14px;
    }
}

/* Intro Section */
/* Approach Section com sintomas centralizados */
.approach {
    padding: 15px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.approach-content {
    margin-top: 50px;
}

.approach-question {
    text-align: center;
    font-size: 22px;
    color: #6a9c89;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.approach-question.visible {
    opacity: 1;
    transform: translateY(0);
}

.symptoms-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.symptoms-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.symptom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--gray-color);
    border-radius: 15px;
    padding: 25px 30px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.symptom-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.symptom-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: rgba(106, 156, 137, 0.05);
}

.symptom-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
}

.symptom-info {
    width: 100%;
}

.symptom-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.symptom-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    max-width: 500px;
    margin: 0 auto;
}

.approach-explanation {
    max-width: 900px;
    margin: 50px auto;
    perspective: 1000px;
}

/* Card principal */
.approach-card {
    position: relative;
    width: 100%;
    height: 450px;
    transition: all 0.5s ease;
}

/* Card inner para efeito de flip */
.approach-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
}

/* Hover para desktop */
@media (min-width: 1025px) {
    .approach-card:hover .approach-card-inner {
        transform: rotateY(180deg);
    }
}

/* Frente e verso do card */
.approach-card-front, .approach-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

/* Frente do card */
.approach-card-front {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3d7a66 100%);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-card-front::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Verso do card */
.approach-card-back {
    background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
    color: var(--text-color);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236a9c89' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Conteúdo do card */
.approach-card-content {
    padding: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Ícone principal */
.approach-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.approach-card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    animation: rotate 6s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Título do card */
.approach-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.approach-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* Texto do card */
.approach-card-front p {
    font-size: 18px;
    line-height: 1.7;
        margin-bottom: 30px;
    opacity: 0.9;
}

/* CTA para virar o card */
.approach-card-cta {
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

.approach-card-cta:hover {
    background: rgba(255, 255, 255, 0.1);
}

.approach-card-cta i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.approach-card-cta:hover i {
    transform: translateX(5px);
}

/* Lista de benefícios */
.approach-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.approach-card-list li {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.approach-card-list-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    box-shadow: 0 5px 15px rgba(106, 156, 137, 0.3);
}

.approach-card-list-text {
    display: flex;
    flex-direction: column;
}

.approach-card-list-text strong {
        font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
    }
    
.approach-card-list-text span {
        font-size: 15px;
    line-height: 1.5;
    color: #666;
}

/* Botão de ação */
.approach-card-btn {
    background: var(--accent-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    margin-top: 20px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.approach-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #e8ae68;
}

/* Mobile Styles */
@media (max-width: 992px) {
    .approach-card {
        height: 500px;
    }
    
    .approach-card-content {
        padding: 30px;
    }
    
    .approach-card-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .approach-explanation {
        margin: 30px auto;
    }
    
    .approach-card {
        height: auto;
    }
    
    .approach-card-inner {
        transform-style: flat;
    }
    
    .approach-card-front, .approach-card-back {
        position: relative;
        height: auto;
        border-radius: 20px;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .approach-card-back {
        transform: rotateY(0);
    }
    
    .approach-card-content {
        padding: 30px 20px;
    }
    
    .approach-card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .approach-card-title {
        font-size: 22px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .approach-card-front p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .approach-card-list li {
        margin-bottom: 15px;
    }
    
    .approach-card-list-text strong {
        font-size: 16px;
    }
    
    .approach-card-list-text span {
        font-size: 14px;
    }
    
    .approach-card-btn {
        width: 100%;
        padding: 12px 30px;
    }
    
    .approach-card-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .approach-card-content {
        padding: 25px 15px;
    }
    
    .approach-card-title {
        font-size: 20px;
    }
    
    .approach-card-front p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .approach-card-list-icon {
        width: 30px;
        height: 30px;
    }
    
    .approach-card-list-text strong {
        font-size: 15px;
    }
    
    .approach-card-list-text span {
        font-size: 13px;
    }
}

/* Form Validation Styles */
.required {
    color: #e74c3c;
    margin-left: 4px;
}

.field-error {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.form-control.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.radio-group.error {
    border: 1px solid #e74c3c;
    border-radius: 8px;
    padding: 8px;
    background-color: #fff5f5;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    max-width: 400px;
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background-color: #2ecc71;
}

.notification.error {
    background-color: #e74c3c;
}

@media (max-width: 768px) {
    .notification {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        text-align: center;
        transform: translateY(120%);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
        margin: 15px -14px;
    }
}

/* Honeypot fields */
.hidden-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Form interaction feedback */
.form-control {
    transition: all 0.3s ease;
}

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(232, 174, 104, 0.15);
}

.form-submit {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-submit:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.form-submit:hover:before {
    width: 300px;
    height: 300px;
}

.form-submit.sending {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    background-size: 200% 200%;
    animation: gradient 2s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Form validation feedback */
.form-control.typing {
    border-color: var(--primary-color);
    background-color: rgba(232, 174, 104, 0.05);
}

.form-control.valid {
    border-color: #2ecc71;
    background-color: rgba(46, 204, 113, 0.05);
}

/* Impressive CTA Button Styles */
.impressive-cta {
    position: relative;
    margin: 40px auto;
    padding: 30px;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impressive-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(232, 174, 104, 0.2), transparent 70%),
                radial-gradient(circle at bottom left, rgba(76, 175, 80, 0.2), transparent 70%);
    z-index: -1;
}

.impressive-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.impressive-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #e8ae68;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.impressive-cta-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.impressive-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(135deg, #e8ae68, #4caf50);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(232, 174, 104, 0.4);
    z-index: 1;
}

.impressive-cta-btn-text {
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.impressive-cta-btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.impressive-cta-btn:hover .impressive-cta-btn-icon {
    transform: translateX(5px);
}

.impressive-cta-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.impressive-cta-btn:hover .impressive-cta-btn-glow {
    opacity: 0.5;
    animation: pulse 1.5s infinite;
}

.impressive-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 174, 104, 0.5);
}

.impressive-cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    z-index: 0;
}

.impressive-cta-particles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(232, 174, 104, 0.6);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    right: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 30%;
    width: 6px;
    height: 6px;
    background: rgba(76, 175, 80, 0.6);
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    top: 60%;
    right: 25%;
    width: 10px;
    height: 10px;
    background: rgba(232, 174, 104, 0.4);
    animation-delay: 1s;
}

.particle:nth-child(4) {
    top: 30%;
    right: 40%;
    width: 5px;
    height: 5px;
    background: rgba(76, 175, 80, 0.5);
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 50%;
    right: 35%;
    width: 7px;
    height: 7px;
    background: rgba(232, 174, 104, 0.3);
    animation-delay: 2s;
}

.impressive-cta-leaf {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 10s infinite linear;
}

.impressive-cta-leaf i {
    color: #4caf50;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-10px) translateX(5px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive styles for impressive CTA */
@media (max-width: 768px) {
    .impressive-cta {
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .impressive-cta-title {
        font-size: 1.8rem;
    }
    
    .impressive-cta-text {
        font-size: 1rem;
    }
    
    .impressive-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .impressive-cta-decoration {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .impressive-cta {
        padding: 20px 15px;
        margin: 20px auto;
    }
    
    .impressive-cta-title {
        font-size: 1.5rem;
    }
    
    .impressive-cta-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .impressive-cta-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .impressive-cta-decoration {
        display: none;
    }
}

/* WhatsApp CTA Section */
.whatsapp-cta {
    position: relative;
    margin: 40px auto;
    padding: 30px;
    max-width: 800px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(232, 174, 104, 0.2), transparent 70%),
                radial-gradient(circle at bottom left, rgba(76, 175, 80, 0.2), transparent 70%);
    z-index: -1;
}

.whatsapp-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.whatsapp-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.whatsapp-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
        margin-bottom: 30px;
    }
    
.whatsapp-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-btn i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background-color: #22c55e;
}

@media (max-width: 768px) {
    .whatsapp-cta {
        padding: 40px 0;
    }
    
    .whatsapp-cta-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-cta-text {
        font-size: 1rem;
    }
    
    .whatsapp-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-cta {
        padding: 30px 0;
    }
    
    .whatsapp-cta-title {
        font-size: 1.6rem;
    }
    
    .whatsapp-cta-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

.section-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px;
    margin-top: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #4CAF50;
    transition: all 0.3s ease;
}

.section-footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%234CAF50' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.section-footer-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.section-footer-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-footer-cta-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #4CAF50;
    border-radius: 2px;
}

.section-footer-cta-text {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.section-footer-cta-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    position: relative;
}

.section-footer-cta-leaf {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    animation: pulse 3s infinite ease-in-out;
}

.section-footer-cta-leaf::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.2);
    z-index: -1;
    animation: pulse 3s infinite ease-in-out 1.5s;
}

.section-footer-cta-leaf i {
    font-size: 2.2rem;
    color: white;
    animation: float 4s infinite ease-in-out;
}

@media (max-width: 992px) {
    .section-footer-cta {
        padding: 30px;
    }
    
    .section-footer-cta-title {
        font-size: 1.7rem;
    }
    
    .section-footer-cta-leaf {
        width: 75px;
        height: 75px;
    }
    
    .section-footer-cta-leaf i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-footer-cta {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    
    .section-footer-cta-decoration {
        margin-left: 0;
        margin-top: 25px;
    }
    
    .section-footer-cta-title {
        font-size: 1.6rem;
    }
    
    .section-footer-cta-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-footer-btn {
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .section-footer-cta {
        padding: 25px;
        border-radius: 10px;
        margin-top: 25px;
    }
    
    .section-footer-cta-title {
        font-size: 1.4rem;
    }
    
    .section-footer-cta-text {
        font-size: 1rem;
    }
    
    .section-footer-cta-leaf {
        width: 70px;
        height: 70px;
    }
    
    .section-footer-cta-leaf i {
        font-size: 1.8rem;
    }
    
    .section-footer-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Transformative CTA Section */
.transformative-cta {
    position: relative;
        padding: 60px 0;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transformative-cta::before {
    display: none;
}

.transformative-cta-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.transformative-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, #e8ae68, #d67f3d);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(214, 127, 61, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.transformative-cta-btn-text {
    margin-right: 10px;
    position: relative;
    z-index: 2;
}

.transformative-cta-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.transformative-cta-btn-icon i {
    font-size: 16px;
}

.transformative-cta-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.transformative-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(214, 127, 61, 0.4);
}

.transformative-cta-btn:hover .transformative-cta-btn-glow {
    opacity: 1;
}

.transformative-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.transformative-cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.transformative-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.transformative-cta-particles .particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 15s infinite linear;
}

.transformative-cta-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    width: 15px;
    height: 15px;
}

.transformative-cta-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.transformative-cta-particles .particle:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 4s;
    width: 12px;
    height: 12px;
}

.transformative-cta-particles .particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    width: 6px;
    height: 6px;
}

.transformative-cta-particles .particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 8s;
    width: 10px;
    height: 10px;
}

@media (max-width: 768px) {
    .transformative-cta {
        padding: 40px 0;
    }
    
    .transformative-cta-btn {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .transformative-cta {
        padding: 30px 0;
    }
    
    .transformative-cta-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.contact-item a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-link {
    color: var(--light-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color) !important;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Ensure sections have proper spacing and anchor visibility */
section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

section::before {
    content: '';
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    top: -120px; /* Match the scroll-padding-top value */
    visibility: hidden;
    pointer-events: none;
}

/* Add specific adjustments for sections that need different spacing */
.hero {
    padding: 180px 0 100px;
    /* other existing hero styles... */
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}