* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    height: 100vh;
    background: linear-gradient(135deg, #183992 0%, #0891b2 100%);
    background-image: url("/assets/business-nbn.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.cta-content {
    margin: 100px auto;
    text-align: center;
}

.cta-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cta-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.cta-card h3 {
    color: #183992;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.cta-card p {
    margin-bottom: 25px;
    color: #6b7280;
}

.cta-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section .subtitle {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-primary {
    background-color: #ffffff;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: fadeInUp 1s ease-out;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #333;
}

.cta-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 80px 0;
    background-color: #f8fafc;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-text h2 {
    font-size: 2.5rem;
    color: #183992;
    margin-bottom: 24px;
    font-weight: 600;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4b5563;
}

.highlight-box {
    background: white;
    border-left: 5px solid #58e9f7;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.highlight-box h3 {
    color: #183992;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
}

.highlight-box li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
}

.highlight-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #58e9f7;
    font-weight: bold;
}

/* Reassurance Section */
.reassurance {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.reassurance h2 {
    font-size: 2.2rem;
    color: #183992;
    margin-bottom: 40px;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.reassurance-item {
    padding: 30px 20px;
}

.reassurance-item .icon {
    font-size: 3rem;
    color: #0891b2;
}

.reassurance-item .icon img {
    width: 50px;
}

.reassurance-item h3 {
    color: #183992;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Timeline */
.timeline {
    background: #f1f5f9;
    padding: 60px 0;
    text-align: center;
}

.timeline h2 {
    font-size: 2.2rem;
    color: #183992;
    margin-bottom: 30px;
}

.timeline-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.date {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0891b2;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #183992;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #0891b2;
}

.faq-item h3 {
    color: #183992;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-item p {
    color: #4b5563;
    line-height: 1.6;
}

.faq-item a {
    color: #0891b2;
    text-decoration: none;
}

.faq-item a:hover, .faq-item a:focus {
    text-decoration: underline;
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: #183992;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover, .btn:focus {
    /* transform: translateY(-2px); */
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: #183992;
    background: white;
    outline: 3px solid #183992;
    outline-offset: 2px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
}

.footer a {
    color: #0891b2;
    text-decoration: none;
}

.footer a:hover, .footer a:focus {
    text-decoration: underline;
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        height: 1400px;
    }

    .cta-section h1 {
        font-size: 2.5rem;
    }

    .cta-section .subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .cta-primary, .cta-secondary {
        width: 250px;
        text-align: center;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }

    .message-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .message-text blockquote {
        font-size: 1.1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-section h1 {
        font-size: 2rem;
    }

    .cta-section .subtitle {
        font-size: 1rem;
    }

    .cta-primary, .cta-secondary {
        padding: 12px 25px;
        font-size: 1rem;
        width: 200px;
    }
}

.countdown-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.countdown-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: rgba(255, 255, 255, 0.95);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 565.48;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.countdown-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.redirect-info {
    font-size: 0.95rem;
    opacity: 0.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.loader-dots {
    display: inline-block;
    margin-left: 0.3rem;
}

.loader-dots span {
    animation: blink 1.4s infinite both;
    display: inline-block;
}

.loader-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loader-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 80%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #183992;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 6px;
}

/* Focus indicators */
*:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}