/* 
HERO LOGO CUSTOMIZATION VARIABLES
==================================
You can experiment with these values by adding them to the :root selector below:

--logo-width: 450px;                    (Desktop logo width)
--logo-padding: 2rem;                   (Desktop logo container padding)
--logo-margin-bottom: 3rem;             (Space below logo)
--logo-border-radius: 15px;             (Logo container corner roundness)
--logo-max-width: 600px;                (Desktop logo container max width)

--logo-width-tablet: 350px;             (Tablet logo width)
--logo-padding-tablet: 1.5rem;          (Tablet logo container padding)
--logo-margin-bottom-tablet: 2rem;      (Tablet space below logo)
--logo-max-width-tablet: 450px;         (Tablet logo container max width)

--logo-width-mobile: 280px;             (Mobile logo width)
--logo-padding-mobile: 1rem;            (Mobile logo container padding)
--logo-margin-bottom-mobile: 1.5rem;    (Mobile space below logo)
--logo-max-width-mobile: 350px;         (Mobile logo container max width)

NAVIGATION LOGO CUSTOMIZATION VARIABLES
=======================================
--nav-logo-height: 50px;                (Desktop navigation logo height)
--nav-logo-height-mobile: 35px;         (Mobile navigation logo height)

Example usage:
:root {
    --logo-width: 500px;
    --logo-padding: 3rem;
    --logo-margin-bottom: 4rem;
    --nav-logo-height: 60px;
    --nav-logo-height-mobile: 40px;
}
*/

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #1a365d;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a365d 0%, #0f2a44 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 90, 135, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2d5a87;
    border: 2px solid #2d5a87;
}

.btn-secondary:hover {
    background: #2d5a87;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-nav {
    height: var(--nav-logo-height, 50px);
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2d5a87;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2d5a87;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d5a87;
    font-weight: 600;
}

.nav-contact i {
    font-size: 1.2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 2rem;
}

.hero-logo-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--logo-padding, 2rem);
    margin-bottom: var(--logo-margin-bottom, 3rem);
    border-radius: var(--logo-border-radius, 15px);
    max-width: var(--logo-max-width, 600px);
    width: 100%;
}

.hero-full-logo {
    width: var(--logo-width, 450px);
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.hero h1 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-stats {
    margin: 2rem 0;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #2d5a87;
    font-family: 'Crimson Text', serif;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Legacy shield styles for reference */
.hero-shield {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Legacy placeholder styles for fallback */
.hero-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(29, 90, 135, 0.3);
}

.hero-placeholder i {
    font-size: 8rem;
    color: white;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about-icon i {
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Office Locations */
.office-locations {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.office {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    min-width: 250px;
}

.office i {
    color: #2d5a87;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.office strong {
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.office span {
    color: #666;
    font-size: 0.9rem;
}

/* Attorneys Section */
.attorneys {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.attorney-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attorney-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Enforce a consistent 4:5 portrait aspect ratio for attorney images */
.attorney-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.attorney-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

/* Special handling for group photos */
.attorney-image img[src*="IMG_0431"] {
    object-position: center center;
    object-fit: cover;
}

.attorney-card:hover .attorney-image img {
    transform: scale(1.05);
}

/* Keep placeholder styles for fallback */
.attorney-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-top: 65px;
}

.attorney-placeholder i {
    font-size: 3rem;
    color: white;
}

.attorney-info {
    padding: 2rem;
}

.attorney-info h3 {
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.attorney-title {
    color: #2d5a87;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.attorney-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.attorney-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.attorney-credentials span {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Practice Areas Section */
.practice-areas {
    padding: 6rem 0;
    background: white;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #2d5a87;
    transition: all 0.3s ease;
}

.practice-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.practice-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.practice-icon i {
    font-size: 1.5rem;
    color: white;
}

.practice-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: #f8f9fa;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 80s linear infinite;
    width: max-content;
    padding: 1rem 0;
}

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

.testimonial-track:hover {
    animation-play-state: paused;
}

/* Ensure testimonials are responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .testimonial-track {
        animation: scroll 60s linear infinite;
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

.testimonial-stars {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.testimonial-author strong {
    color: #1a365d;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #90cdf4;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #90cdf4;
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: #1a365d;
    color: white;
}

/* Footer */
.footer {
    background: #0f2a44;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #90cdf4;
}

.footer-section i {
    color: #90cdf4;
    margin-right: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-disclaimer small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-nav {
        height: 35px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .attorneys-grid {
        grid-template-columns: 1fr;
    }
    
    .practice-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    

    
    .hero-logo-top {
        padding: var(--logo-padding-tablet, 1.5rem);
        margin-bottom: var(--logo-margin-bottom-tablet, 2rem);
        max-width: var(--logo-max-width-tablet, 450px);
    }
    
    .hero-full-logo {
        width: var(--logo-width-tablet, 350px);
    }
    
    .hero-shield {
        width: 150px;
    }
    
    .hero-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .hero-placeholder i {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 80px 1rem 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-logo-top {
        padding: var(--logo-padding-mobile, 1rem);
        margin-bottom: var(--logo-margin-bottom-mobile, 1.5rem);
        max-width: var(--logo-max-width-mobile, 350px);
    }
    
    .hero-full-logo {
        width: var(--logo-width-mobile, 280px);
    }
    
    .logo-nav {
        height: var(--nav-logo-height-mobile, 35px);
    }
    
    .faq-cta .btn {
        margin: 0;
    }
    

}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects for cards */
.attorney-card:hover,
.practice-card:hover,
.about-card:hover,
.testimonial-card:hover {
    cursor: default;
}

/* Form validation styles */
.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ff6b6b;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #51cf66;
}

/* Success message styles */
.success-message {
    background: #51cf66;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.error-message {
    background: #ff6b6b;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

/* Resources Section */
.resources {
    padding: 6rem 0;
    background: white;
}

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

.resource-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.resource-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2d5a87 0%, #1a365d 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.resource-icon i {
    font-size: 1.8rem;
    color: white;
}

.resource-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d5a87;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #1a365d;
}



/* Success Stories Section */
.success-stories {
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.stories-slider {
    position: relative;
}

.stories-visible {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    transition: all 0.8s ease;
}

.stories-hidden {
    display: none;
}

.story-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.8s ease;
    border-left: 4px solid #51cf66;
    opacity: 0;
    transform: translateY(30px);
}

.story-card.active {
    opacity: 1;
    transform: translateY(0);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.story-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #51cf66;
    margin-bottom: 1rem;
    font-family: 'Crimson Text', serif;
}

.story-card p {
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.story-author {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
}

.stories-cta {
    text-align: center;
    margin-top: 3rem;
}

.stories-cta p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

/* WhatsApp Contact Enhancements */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: background 0.3s ease;
}

.whatsapp-button:hover {
    background: #128c7e;
}

.whatsapp-button i {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a365d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    color: #2d5a87;
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.faq-cta .btn {
    margin: 0 0.5rem;
}
