
        /* CSS Content */
:root {
    --primary-orange: #FF6B35;
    --secondary-gold: #F7931E;
    --accent-red: #C5282F;
    --warm-brown: #8B4513;
    --cream: #FFF8DC;
    --deep-brown: #3E2723;
    --soft-yellow: #FFF3E0;
    --peacock-blue: #006A6B;
    --saffron: #FF9933;
    --emerald: #50C878;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--deep-brown);
    overflow-x: hidden;
    background-color: var(--cream);
}

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--deep-brown);
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    background: rgba(255, 248, 220, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700 !important;
    font-size: 1.8rem !important;
    color: var(--deep-brown) !important;
    display: flex;
    align-items: center;
}

.brand-icon {
    max-width: 40px;   
    height: auto;
}
@media (max-width: 768px) {
    .brand-icon {
        max-width: 30px; /* Smaller logo on tablets & phones */
    }
}

@media (max-width: 576px) {
    .brand-icon {
        max-width: 25px; /* Even smaller logo on small phones */
    }
}

.nav-link {
    font-weight: 500 !important;
    color: var(--deep-brown) !important;
    transition: all 0.3s ease !important;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-orange) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--secondary-gold) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--deep-brown);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--warm-brown);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border: none;
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-orange));
}

.btn-outline-custom {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 12px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--warm-brown);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.phone-mockup {
    width: 280px;
    height: 500px;
    background: var(--deep-brown);
    border-radius: 35px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.3);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 20px;
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-title {
    font-weight: 600;
    color: var(--deep-brown);
    font-size: 1.1rem;
}

.notification-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
}

.fabric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 300px;
}

.fabric-item {
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.fabric-1 {
    background: linear-gradient(45deg, var(--primary-orange), var(--secondary-gold));
}

.fabric-2 {
    background: linear-gradient(45deg, var(--peacock-blue), var(--emerald));
}

.fabric-3 {
    background: linear-gradient(45deg, var(--accent-red), var(--saffron));
}

.fabric-4 {
    background: linear-gradient(45deg, var(--warm-brown), var(--primary-orange));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    animation: floating 3s ease-in-out infinite;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.section-badge {
    display: inline-block;
    background: var(--soft-yellow);
    color: var(--primary-orange);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-orange);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-brown);
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--soft-yellow);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--deep-brown);
    font-family: 'Playfair Display', serif;
}

.feature-desc {
    color: var(--warm-brown);
    line-height: 1.6;
}

.feature-pattern {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--soft-yellow);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--deep-brown) 0%, var(--warm-brown) 100%);
    position: relative;
    overflow: hidden;
}

.mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="mandala" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="15" fill="none" stroke="%23FF6B35" stroke-width="1" opacity="0.1"/><circle cx="20" cy="20" r="8" fill="none" stroke="%23F7931E" stroke-width="1" opacity="0.1"/><circle cx="20" cy="20" r="3" fill="%23FF6B35" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23mandala)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-gold));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    z-index: 3;
}

.step-icon {
    font-size: 2rem;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    font-family: 'Playfair Display', serif;
}

.step-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--soft-yellow);
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #ff6b35 0%, #c07f33 50%, #b44905 100%);
    padding: 80px 0;
    overflow: hidden;
    color: white;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 25px 25px;
    animation: float 20s ease-in-out infinite;
}

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

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

.cta-icon {
    display: inline-block;
    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 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.cta-icon i {
    font-size: 32px;
    color: white;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 30px;
}

.cta-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.btn-light {
    background: white;
    color: #ff6b35;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-note {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
}

/* Footer Styles */
.footer {
    position: relative;
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 50%, #4a2a1a 100%);
    color: #e8d5c4;
    padding: 60px 0 0;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 107, 53, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 107, 53, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 107, 53, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 107, 53, 0.05) 75%);
    background-size: 30px 30px;
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
}

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

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-brand i {
    font-size: 1.6rem;
    margin-right: 10px;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    color: #d4c2b1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.social-link:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 20px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, transparent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d4c2b1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ff6b35;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    margin: 40px 0 30px;
}

.footer-copyright,
.footer-love {
    margin: 0;
    font-size: 0.9rem;
    color: #b8a695;
    padding-bottom: 30px;
}

.footer-love {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.footer-love i {
    font-size: 0.8rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin: 5px;
    }
    
    .footer-love {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .footer {
        padding: 40px 0 0;
    }
}

.testimonials-section {
    padding: 80px 0;
    position: relative;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8b6914;
    margin-bottom: 0;
    font-weight: 400;
    opacity: 0.9;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff8c42);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.1);
    color: #ff6b35;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #ff6b35;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.author-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.testimonial-card:hover .author-avatar::before {
    transform: translateX(100%);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .author-name {
    color: #ff6b35;
}

.author-role {
    font-size: 0.9rem;
    color: #8b6914;
    opacity: 0.8;
}

/* Testimonials Animation on Scroll */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Testimonials Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
        top: -8px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
}

