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

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}
/* Testimonials Section Background - Light Gray */
.testimonials-wrapper {
    background-color: #f5f5f5;
    padding: 4rem 0;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    text-align: center;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: #60a5fa;
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #718096;
}

/* Testimonials Container */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

/* Quote Icon */
.quote-icon {
    color: #93c5fd;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 300;
    font-style: italic;
}

/* Testimonial Content */
.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    display: inline;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.125rem;
}

.author-company {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Star Rating */
.star-rating {
    color: #fbbf24;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.star-rating i {
    margin-right: 2px;
}

/* CTA Section */
.cta-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.cta-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.cta-button:hover {
    background-color: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #9ca3af;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    font-size: 13px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1a1a1a;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .nav-menu {
        display: none;
    }

    .cta-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}
