* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #003087;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0070e0;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn-secondary,
.btn-primary {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    color: #0070e0;
    border: 1px solid #0070e0;
    background: transparent;
}

.btn-secondary:hover {
    background: #f0f8ff;
}

.btn-primary {
    background: #ffd140;
    color: #001c64;
    font-weight: 600;
}

.btn-primary:hover {
    background: #ffbc00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 209, 64, 0.3);
}

.hero {
    background: linear-gradient(135deg, #003087 0%, #0070e0 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: #ffd140;
    color: #001c64;
    font-weight: 600;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 209, 64, 0.4);
    background: #ffbc00;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #003087;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.problem-section {
    background: #f8f9fa;
}

.problem-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.problem-box h3 {
    color: #003087;
    margin-bottom: 1rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 112, 224, 0.2);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #0070e0;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    color: #003087;
}

.services-section {
    background: #f8f9fa;
}

.services-info {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid #0070e0;
}

.services-info strong {
    color: #003087;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.site-card {
    padding: 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.site-card:hover {
    border-color: #0070e0;
    box-shadow: 0 5px 15px rgba(0, 112, 224, 0.2);
}

.site-category {
    font-weight: bold;
    color: #0070e0;
    margin-bottom: 0.5rem;
}

.audience-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.audience-box {
    padding: 1.5rem;
    background: white;
    border-left: 4px solid #ffd140;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.audience-box h3 {
    color: #003087;
    margin-bottom: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card h3 {
    margin-bottom: 1em;
}

.pricing-card:hover {
    border-color: #0070e0;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 112, 224, 0.2);
}

.pricing-card.featured {
    border-color: #ffd140;
    transform: scale(1.05);
}

.price-amount {
    font-size: 2rem;
    color: #0070e0;
    margin: 1rem 0;
    display: inline;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    color: #0070e0;
}

.benefit h3 {
    color: #003087;
}

.process-section {
    background: #f8f9fa;
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.process-tab {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.process-tab.active {
    background: #0070e0;
    color: white;
    border-color: #0070e0;
}

.process-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: #0070e0;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.contact-section {
    background: #001c64;
    color: white;
    text-align: center;
}

.contact-section .section-title {
    color: white;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

.contact-method h3 {
    margin-bottom: 0.5rem;
    color: #ffd140;
}

.contact-method a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-method a:hover {
    color: #ffd140;
}

.cta-section {
    background: linear-gradient(135deg, #003087 0%, #0070e0 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.footer {
    background: rgb(232, 244, 253);
;
    color: #001c64;
    text-align: center;
    padding: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

.highlight {
    background: #fff9e1;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}