/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background: #ffffff;
}

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

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 75px;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
    height: 100%;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: white;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: white;
}

.hero .highlight {
    color: #60a5fa;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.25);
    background: #1d4ed8;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section - LIGHT BACKGROUND */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.services .section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #1e40af;
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.services .section-header h2 {
    color: #0f172a;
}

.services .section-header .highlight {
    color: #2563eb;
}

.services .section-header p {
    color: #475569;
}

.services-wrapper {
    margin: 2rem auto 0;
    max-width: 1200px;
    padding: 0 2rem;
}

.services-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.services-bottom-row {
    display: grid;
    grid-template-columns: repeat(2, calc((100% - 4rem) / 3));
    gap: 2rem;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .services-wrapper {
        max-width: 100%;
        padding: 0 1rem;
        margin: 2rem 0 0;
    }
    
    .services-top-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .services-bottom-row {
        grid-template-columns: repeat(2, calc((100% - 4rem) / 3));
        gap: 1.5rem;
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #d1d5db;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: #2563eb;
}

.service-icon-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-badge {
    display: none;
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section - DARK BACKGROUND */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.about .section-badge {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.about .section-header h2 {
    color: #ffffff;
}

.about .section-header .highlight {
    color: #60a5fa;
}

.about .section-header p {
    color: #cbd5e1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.7;
    font-size: 1.125rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: #60a5fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.highlight-item h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0;
}

.about-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats-floating {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.floating-stat .stat-label {
    color: #cbd5e1;
    font-size: 0.875rem;
    font-weight: 500;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #60a5fa;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #60a5fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1rem;
}

/* Contact Section - LIGHT BACKGROUND (same as services) */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.contact .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.contact .section-header h2 {
    color: #1a1a1a;
}

.contact .section-header .highlight {
    color: #2563eb;
}

.contact .section-header p {
    color: #64748b;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: #1a1a1a;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

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

.contact-details h4 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p,
.contact-details a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #2563eb;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.form-row {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
    font-family: inherit;
    color: #1a1a1a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    height: 180px;
    resize: vertical;
    line-height: 1.6;
}

.submit-button {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.submit-button svg {
    width: 22px;
    height: 22px;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255,255,255,0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 1rem;
    text-decoration: none;
    display: block;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    margin-top: auto;
}

.social-text {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-bottom p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Policy Section (keeping existing styles) */
.policy-container {
    padding-top: 100px;
    padding-bottom: 5rem;
    background: #f8fafc;
    min-height: 100vh;
    padding-left: 2rem;
    padding-right: 2rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.policy-content h1 {
    color: #1e293b;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.policy-section {
    margin-bottom: 3.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #2563eb;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.policy-section h2 span {
    color: #64748b;
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.policy-section h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.policy-section p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.policy-section ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.125rem;
    padding-left: 1.5rem;
}

.policy-section ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2563eb;
}

.method-block {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.method-block:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #2563eb;
}

.method-block:last-child {
    margin-bottom: 0;
}

.method-block h3 {
    color: #2563eb;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.method-block ul {
    margin-bottom: 0;
}

.method-block ul li {
    color: #475569;
}

.responsibilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.responsibility-block {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.responsibility-block:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: #2563eb;
}

.responsibility-block h3 {
    color: #2563eb;
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.responsibility-block p {
    margin-bottom: 0;
    font-size: 1.125rem;
}

/* Testimonial Section - LIGHT BACKGROUND */
.testimonial {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(37, 99, 235, 0.02) 50%, transparent 51%);
    background-size: 60px 60px;
    pointer-events: none;
}

.testimonial .section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #1e40af;
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.testimonial .section-header h2 {
    color: #0f172a;
}

.testimonial .section-header .highlight {
    color: #2563eb;
}

.testimonial .section-header p {
    color: #475569;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    border-top: 4px solid #2563eb;
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    text-align: left;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Legacy testimonials styles for policy page */
.testimonial-message {
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.testimonial-message p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.testimonial-message p:last-of-type {
    margin-bottom: 0;
    font-size: 1.125rem;
    color: #64748b;
}

.cta-section {
    margin-top: 2rem;
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    background: #2563eb;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.cta-section .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.25);
    background: #1d4ed8;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.875rem;
    }
    
    .testimonial-message p {
        font-size: 1.125rem;
    }
    
    .testimonial-message p:last-of-type {
        font-size: 1rem;
    }
    
    .cta-section .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}