/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', sans-serif;
    transition: all 0.3s ease;
}

body {
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    /* background: linear-gradient(135deg, #6A82A1, #36495E);Elegant Gradient */
    color: #333;
    text-align: center;
    padding: 100px 0;
    border-bottom: 3px solid #FFDA79; /* Subtle line */
}

    header h1 {
        font-size: 3.5em;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    header p {
        font-size: 1.5em;
        margin-bottom: 40px;
        font-weight: 300;
        line-height: 1.4;
    }

.cta-buttons a {
    background-color: #FFDA79; /* Light Yellow */
    color: #36495E; /* Dark Blue */
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 30px;
    margin: 0 15px;
    font-size: 1.2em;
    transition: all 0.3s ease;
}

    .cta-buttons a.btn-primary:hover {
        background-color: #FFD155; /* Yellow */
        transform: scale(1.05);
    }

    .cta-buttons a.btn-secondary {
        background-color: #FFC72D; /* Golden Yellow */
        color: white;
        transition: all 0.3s ease;
    }

        .cta-buttons a.btn-secondary:hover {
            background-color: #FFD155; /* Hover effect */
            transform: scale(1.05);
        }

.countdown {
    background-color: #36495E; /* Dark Blue */
    color: white;
    padding: 60px 0;
    text-align: center;
}

    .countdown h2 {
        font-size: 2.5em;
        margin-bottom: 30px;
    }

#timer {
    font-size: 3em;
    font-weight: 700;
    color: #FFC72D; /* Golden Yellow */
    letter-spacing: 3px;
}

.features {
    padding: 80px 0;
    text-align: center;
    background-color: #ffffff;
}

    .features h2 {
        font-size: 3em;
        color: #36495E;
        margin-bottom: 40px;
    }

.features-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    font-weight: 300;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-card {
    background-color: #f9f9f9;
    padding: 30px;
    width: 30%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
    }

    .feature-card h3 {
        font-size: 1.8em;
        margin-bottom: 20px;
        color: #36495E;
    }

.join-us {
    background-color: #FFDA79; /* Light Yellow */
    padding: 80px 0;
    text-align: center;
}

    .join-us h2 {
        font-size: 2.8em;
        color: #36495E;
        margin-bottom: 20px;
    }

    .join-us p {
        font-size: 1.3em;
        margin-bottom: 30px;
        font-weight: 300;
    }

    .join-us .btn-primary {
        background-color: #FFC72D; /* Golden Yellow */
        color: white;
        padding: 18px 40px;
        text-decoration: none;
        border-radius: 30px;
        font-size: 1.3em;
        transition: transform 0.3s ease;
    }

        .join-us .btn-primary:hover {
            background-color: #FFD155;
            transform: scale(1.05);
        }

footer {
    background-color: #36495E; /* Dark Blue */
    color: white;
    text-align: center;
    padding: 40px 0;
    font-weight: 300;
}

    footer p {
        font-size: 1em;
        margin: 5px 0;
    }
