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

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Header Navigation */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
}

.logo {
    display: flex;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #0066cc;
    text-decoration: none;
}

.logo-icon {
    width: 24px;
    height: 50px;
    border-radius: 4px;
}


/* Hero Header */
.header {
    background: #034EA2;
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.header p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

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

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #034EA2;
}

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

.benefit-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 3px solid #00AEEF;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 174, 239, 0.15);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #034EA2;
}

.benefit-card p {
    color: #475569;
    line-height: 1.7;
}

/* Testimonial Section */
.testimonial-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid #00AEEF;
    box-shadow: 0 4px 12px rgba(3, 78, 162, 0.1);
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process {
    background: #f8fafc;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: white;
    border-left: 4px solid #00AEEF;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: inline-block;
    background: #034EA2;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    font-weight: 600;
    margin-right: 1rem;
}

.step h3 {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #034EA2;
    margin-bottom: 0.75rem;
}

.step p {
    color: #475569;
    line-height: 1.7;
    margin-left: 3rem;
}

.cta-section {
    background: #034EA2;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background: #00AEEF;
    color: white;
}

.btn-primary:hover {
    background: #0096d1;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 174, 239, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #003d82;
    color: white;
    padding-top: 60px;
}

.footer-content {
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    color: white;
    text-decoration: none;
}

.footer-logo-icon {
    width: 240px;
    height: 24px;
    border-radius: 4px;
}

.footer-bottom {
    display: flex;
    background: white;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.plum-flower {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a, .footer-legal span {

  color: var(--calerity-dark-blue);
  font-family: var(--font-family-museo_sans-500);
  font-size: var(--font-size-m);
  font-style: normal;
  font-weight: 400;

    text-decoration: none;

}

.social-logos {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.social-links a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.social-logos a img{
    height: 15px;
    width: 15px;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-svg {
        height: 40px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .header p {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 2rem;
    }

    .testimonial-quote {
        font-size: 1.125rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
