/* FAQ Section Styles for GEO Optimization */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%232C5F41" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C5F41;
    margin-bottom: 20px;
    position: relative;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #2C5F41, #34704A);
    border-radius: 2px;
}

.faq-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(44, 95, 65, 0.1);
    border: 1px solid rgba(44, 95, 65, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '?';
    position: absolute;
    top: 20px;
    right: 25px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #2C5F41, #34704A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    opacity: 0.8;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 95, 65, 0.15);
    border-color: #2C5F41;
}

.faq-item:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2C5F41;
    margin-bottom: 15px;
    line-height: 1.4;
    padding-right: 50px;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.faq-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(44, 95, 65, 0.1);
    border: 2px solid rgba(44, 95, 65, 0.1);
}

.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C5F41;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.faq-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2C5F41, #34704A);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.faq-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(44, 95, 65, 0.3);
    background: linear-gradient(135deg, #34704A, #2C5F41);
}

.faq-cta .btn-icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 15px;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
        padding-right: 40px;
    }
    
    .faq-item::before {
        width: 25px;
        height: 25px;
        font-size: 14px;
        top: 15px;
        right: 20px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-header h2 {
        font-size: 1.8rem;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .faq-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Animation for better user experience */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Accessibility improvements */
.faq-item:focus-within {
    outline: 2px solid #2C5F41;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .faq-item {
        animation: none;
    }
    
    .faq-item:hover {
        transform: none;
    }
    
    .faq-cta .btn:hover {
        transform: none;
    }
}
