/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Main Container - Split Layout */
.main-container {
    display: flex;
    min-height: 40vh;
    width: 100%;
}

/* Left Side - White Background */
.left-side {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Right Side - Dark Green Background */
.right-side {
    width: 50%;
    background-color: #293329;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 40px;
    width: auto;
}

.whatsapp-btn {
    background: #98E090;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(152, 224, 144, 0.3);
}

.whatsapp-btn:hover {
    background: #85D07D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(152, 224, 144, 0.4);
}

/* Main Content */
.content {
    flex: 1;
    padding: 60px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.content h1 em {
    font-style: italic;
    color: #333;
}

.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.5;
    max-width: 400px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    background: #f5f5f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

/* Social Media Icons */
.social-icons {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Watch Container */
.watch-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px;
    position: relative;
    padding-bottom: 60px;
}

.watch-image {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
    margin-top: 80px;
}

.overlap-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 120%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content h1 {
        font-size: 3rem;
    }
    
    .content {
        padding: 40px 30px;
    }
    
    .header {
        padding: 25px 30px;
    }
    
    .logo img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .left-side,
    .right-side {
        width: 100%;
    }
    
    .left-side {
        min-height: 100vh;
    }
    
    .right-side {
        min-height: 60vh;
    }
    
    .content h1 {
        font-size: 2.5rem;
    }
    
    .content {
        padding: 30px 25px;
    }
    
    .header {
        padding: 20px 25px;
    }
    
    .social-icons {
        top: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .tag {
        text-align: center;
    }
    
    .watch-container {
        padding: 20px;
    }
    
    /* Second Section Mobile Styles */
    .second-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .second-container {
        flex-direction: column;
        padding: 0 25px;
        text-align: center;
    }
    
    .second-left {
        padding-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .second-left h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .second-description {
        font-size: 1rem;
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .brands-section h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .brand-logos {
        gap: 25px;
        justify-content: center;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .red-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .content {
        padding: 20px;
    }
    
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo img {
        height: 30px;
    }
    
    .whatsapp-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .social-icons {
        position: relative;
        top: auto;
        right: auto;
        justify-content: center;
        margin: 20px 0;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .watch-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support for system preferences */
@media (prefers-color-scheme: dark) {
    /* Keep the design as is since it's specifically designed with these colors */
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.whatsapp-btn:focus,
.social-icon:focus {
    outline: 2px solid #98E090;
    outline-offset: 2px;
}

/* Second Section Styles */
.second-section {
    background-color: #98E090;
    width: 100%;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.second-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.second-left {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    padding-left: 0;
    margin-left: 0;
}

.second-left h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.second-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 500px;
}

.second-description em {
    font-style: italic;
}

.second-description strong {
    font-weight: 700;
}

.brands-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.brand-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
    overflow-x: auto;
}

.brand-logo {
    height: 45px;
    width: 45px;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.second-right {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: -40px;
}

.red-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Third Section - Repeating Logo Header */
.third-section {
    background-color: #293329;
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.logo-strip {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-pattern {
    display: flex;
    align-items: center;
    animation: scroll-logos 20s linear infinite;
    white-space: nowrap;
}

.repeating-logo {
    height: 50px;
    width: auto;
    margin-right: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments for third section */
@media (max-width: 768px) {
    .third-section {
        height: 60px;
    }
    
    .repeating-logo {
        height: 35px;
        margin-right: 30px;
    }
    
    .logo-pattern {
        animation-duration: 15s;
    }
}

@media (max-width: 480px) {
    .third-section {
        height: 50px;
    }
    
    .repeating-logo {
        height: 30px;
        margin-right: 25px;
    }
    
    .logo-pattern {
        animation-duration: 12s;
    }
}

/* Fourth Section - Statistics */
.stats-section {
    background-color: #ffffff;
    width: 100%;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: #333;
    line-height: 1.3;
}

/* Responsive styles for stats section */
@media (max-width: 1024px) {
    .stats-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 25px;
    }
    
    .stat-item {
        max-width: 300px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 30px 0;
    }
    
    .stats-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* How This Works Section */
.how-it-works-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.how-it-works-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.how-it-works-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.how-it-works-btn {
    margin-bottom: 60px;
}

.how-it-works-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.process-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive styles for how-it-works section */
@media (max-width: 1024px) {
    .how-it-works-container {
        padding: 0 30px;
    }
    
    .how-it-works-title {
        font-size: 3.5rem;
    }
    
    .how-it-works-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }
    
    .how-it-works-container {
        padding: 0 25px;
    }
    
    .how-it-works-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .how-it-works-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .how-it-works-btn {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .how-it-works-section {
        padding: 40px 0;
    }
    
    .how-it-works-container {
        padding: 0 20px;
    }
    
    .how-it-works-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .how-it-works-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .how-it-works-btn {
        margin-bottom: 40px;
    }
}

/* About Section - Andrés Suárez */
.about-section {
    background-color: #F7F7F7;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px;
}

.about-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.profile-image {
    width: 300px;
    height: 380px;
    object-fit: cover;
    display: block;
}

.about-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-name {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.3;
}

.about-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    max-width: 500px;
}

.about-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn {
    width: 60px;
    height: 60px;
    background-color: #98E090;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(152, 224, 144, 0.3);
}

.arrow-btn:hover {
    background-color: #85D07D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(152, 224, 144, 0.4);
}

.arrow-btn:focus {
    outline: 2px solid #98E090;
    outline-offset: 2px;
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
}

/* Responsive styles for about section */
@media (max-width: 1024px) {
    .about-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .about-name {
        font-size: 3.5rem;
    }
    
    .about-title {
        font-size: 1.3rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 250px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 25px;
        text-align: center;
    }
    
    .about-right {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .about-name {
        font-size: 3rem;
    }
    
    .about-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .about-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .profile-image {
        width: 200px;
        height: 250px;
    }
    
    .arrow-btn {
        width: 50px;
        height: 50px;
    }
    
    .arrow-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-container {
        gap: 30px;
        padding: 0 20px;
    }
    
    .about-name {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .profile-image {
        width: 180px;
        height: 220px;
    }
    
    .arrow-btn {
        width: 45px;
        height: 45px;
    }
    
    .arrow-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: #F9F8F7;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    margin-bottom: 60px;
}

.benefit-item {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.benefit-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    max-width: 200px;
}

.benefits-btn {
    margin-top: 20px;
}

/* Responsive styles for benefits section */
@media (max-width: 1024px) {
    .benefits-container {
        padding: 0 30px;
    }
    
    .benefits-grid {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .benefit-item {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.3rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-container {
        padding: 0 25px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-description {
        font-size: 0.9rem;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-container {
        padding: 0 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
    }
    
    .benefit-item {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .benefit-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .benefit-description {
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .benefits-btn {
        margin-top: 15px;
    }
}

/* Reviews Section */
.reviews-section {
    background-color: #293329;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.reviews-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 40px;
}

.review-item {
    flex: 0 0 calc(33.333% - 27px);
    background: transparent;
    padding: 40px 30px;
    text-align: center;
    color: #ffffff;
}

.review-text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    font-style: italic;
}

.review-author {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.8;
}

.reviews-nav-btn {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.reviews-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) translateX(2px);
}

.reviews-nav-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.reviews-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive styles for reviews section */
@media (max-width: 1024px) {
    .reviews-container {
        padding: 0 30px;
    }
    
    .reviews-nav-btn {
        right: 30px;
    }
    
    .review-item {
        flex: 0 0 calc(50% - 20px);
        padding: 35px 25px;
    }
    
    .review-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .review-author {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-container {
        padding: 0 25px;
    }
    
    .reviews-nav-btn {
        right: 25px;
        width: 45px;
        height: 45px;
    }
    
    .reviews-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .review-item {
        flex: 0 0 100%;
        padding: 30px 20px;
    }
    
    .reviews-track {
        gap: 20px;
    }
    
    .review-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .review-author {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-container {
        padding: 0 20px;
    }
    
    .reviews-nav-btn {
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .reviews-nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .review-item {
        padding: 25px 15px;
    }
    
    .review-text {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }
    
    .review-author {
        font-size: 0.85rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-title {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #F8F8F8;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #F0F0F0;
}

.faq-question span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle:hover {
    background-color: #E5E5E5;
    color: #333;
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.expanded .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #FFFFFF;
}

.faq-item.expanded .faq-answer {
    max-height: 200px;
    padding: 0 30px 30px 30px;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
}

/* Responsive styles for FAQ section */
@media (max-width: 1024px) {
    .faq-container {
        padding: 0 30px;
    }
    
    .faq-title {
        font-size: 3.5rem;
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 22px 25px;
    }
    
    .faq-question span {
        font-size: 1.1rem;
    }
    
    .faq-item.expanded .faq-answer {
        padding: 0 25px 25px 25px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 25px;
    }
    
    .faq-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .faq-list {
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px 22px;
    }
    
    .faq-question span {
        font-size: 1rem;
        margin-right: 15px;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
    }
    
    .faq-toggle svg {
        width: 18px;
        height: 18px;
    }
    
    .faq-item.expanded .faq-answer {
        padding: 0 22px 22px 22px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-title {
        font-size: 2.5rem;
        margin-bottom: 35px;
    }
    
    .faq-list {
        gap: 12px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
        margin-right: 12px;
    }
    
    .faq-toggle {
        width: 32px;
        height: 32px;
    }
    
    .faq-toggle svg {
        width: 16px;
        height: 16px;
    }
    
    .faq-item.expanded .faq-answer {
        padding: 0 20px 20px 20px;
        max-height: 250px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 80px 0 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-card {
    background-color: #98E090;
    border-radius: 24px;
    padding: 60px 50px 80px 50px;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(152, 224, 144, 0.2);
}

.contact-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.contact-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-description {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.contact-overlay-icon {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.contact-overlay-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.contact-social-icons {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.contact-social-icon {
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-icon:hover {
    transform: translateY(-3px);
    color: #98E090;
}

.contact-social-icon svg {
    width: 32px;
    height: 32px;
}

/* Responsive styles for contact section */
@media (max-width: 1024px) {
    .contact-container {
        padding: 0 30px;
    }
    
    .contact-card {
        padding: 50px 40px 70px 40px;
        margin-bottom: 50px;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
    
    .contact-logo img {
        height: 45px;
    }
    
    .contact-overlay-icon img {
        width: 100px;
        height: 100px;
    }
    
    .contact-social-icons {
        gap: 25px;
    }
    
    .contact-social-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-social-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0 100px 0;
    }
    
    .contact-container {
        padding: 0 25px;
    }
    
    .contact-card {
        padding: 40px 30px 60px 30px;
        margin-bottom: 40px;
        border-radius: 20px;
    }
    
    .contact-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .contact-logo {
        margin-bottom: 25px;
    }
    
    .contact-logo img {
        height: 40px;
    }
    
    .contact-overlay-icon {
        bottom: -25px;
    }
    
    .contact-overlay-icon img {
        width: 80px;
        height: 80px;
    }
    
    .contact-social-icons {
        gap: 20px;
    }
    
    .contact-social-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-social-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0 80px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-card {
        padding: 35px 25px 50px 25px;
        margin-bottom: 35px;
        border-radius: 16px;
    }
    
    .contact-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .contact-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .contact-logo {
        margin-bottom: 20px;
    }
    
    .contact-logo img {
        height: 35px;
    }
    
    .contact-overlay-icon {
        bottom: -20px;
    }
    
    .contact-overlay-icon img {
        width: 70px;
        height: 70px;
    }
    
    .contact-social-icons {
        gap: 15px;
    }
    
    .contact-social-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-social-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #FFFFFF;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #E5E5E5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    max-width: 400px;
    text-align: left;
}

.footer-center {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 40px;
}

.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.footer-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-links {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: right;
}

.footer-links:hover {
    color: #333;
}

/* Responsive styles for footer section */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-center {
        margin: 0 30px;
    }
    
    .footer-logo {
        height: 32px;
    }
    
    .footer-copyright,
    .footer-links {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 30px 0;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 25px;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        flex: none;
        justify-content: center;
    }
    
    .footer-center {
        margin: 0;
        order: -1;
    }
    
    .footer-logo {
        height: 30px;
    }
    
    .footer-copyright {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 25px 0;
    }
    
    .footer-container {
        gap: 20px;
        padding: 0 20px;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .footer-copyright,
    .footer-links {
        font-size: 0.8rem;
    }
}

/* Print styles */
@media print {
    .social-icons {
        display: none;
    }
    
    .main-container {
        flex-direction: column;
    }
    
    .left-side,
    .right-side {
        width: 100%;
    }
    
    .second-section {
        page-break-before: always;
    }
    
    .third-section {
        display: none;
    }
    
    .stats-section {
        page-break-inside: avoid;
    }
    
    .about-section {
        page-break-inside: avoid;
    }
    
    .benefits-section {
        page-break-inside: avoid;
    }
    
    .faq-section {
        page-break-inside: avoid;
    }
    
    .contact-section {
        page-break-inside: avoid;
    }
    
    .footer-section {
        page-break-inside: avoid;
    }
    
    .arrow-btn {
        display: none;
    }
    
    .faq-toggle {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
        padding: 0 30px 20px 30px !important;
    }
    
    .contact-social-icons {
        display: none;
    }
}
