html {
    scroll-behavior: smooth;
}

.detail-box p {
    line-height: 1.6;
    max-width: 600px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #00d4ff;
    color: #00204a;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #00b4e0;
}

nav a {
    margin-left: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

nav a:hover,
nav a:focus {
    color: #00d4ff;
    outline: none;
}

a:focus {
    outline: 2px dashed #00d4ff;
    outline-offset: 4px;
}

.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

@media screen and (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

@media screen and (max-width: 768px) {
    header nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav {
        display: none;
        background-color: #2a2d34;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 10px 20px;
        max-height: 0;
        overflow: hidden;
        text-align: center;
        transition: max-height 0.3s ease;
    }

    .mobile-nav.active {
        display: block;
        max-height: 300px;
    }

    .mobile-nav a {
        display: block;
        margin: 10px 0;
    }
}

.spinner {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border: 4px solid #ccc;
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#stickyCta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00d4ff;
    color: #00204a;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 9999;
    transition: background-color 0.3s;
}

#stickyCta:hover {
    background-color: #00b4e0;
}