* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('../assets/bk2ext.png');
    background-size: cover;
    align-items: center;
    padding-left: 2.5%;
}

header {
    width: 100%;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    gap: 50vw;
}

.logo img {
    margin-top: 16px;
    width: 200px;
}

#nav-links {
    margin-top: 35px;
    width: 100%;
    font-size: 1.4rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    margin-top: 35px;
    width: 100%;
    font-size: 1.4rem;
}

.nav-links li {
    clear: both;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    color: #000;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff0000;
}

.hero-content {
    max-width: 1200px;
}

#title-wrapper {
    text-align: center;
    width: 100%;
    padding-top: 40%;
}

.subpg-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    width: 100%;
}

.form-wrapper {
    padding-left: 2%;
    width: 60%;
}

#home-title {
    font-size: 3.8rem;
    margin-bottom: 4px;
    color: #fff;
    font-weight: 900;
    text-shadow: 2px 2px 4px #000;
}

#home-info {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #000;
    font-weight: 500;
    text-shadow: 2px 2px 4px #fff;
}

p {
    font-size: 1rem;
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.ctabtn {
    background-color: #ff0000;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn {
    background-color: #000;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.3s;
    display: inline-block;
    margin-top: 20px;
}

a.btn {
    font-size: 1rem;
    font-weight: 500;
}

.ctabtn:hover {
    background-color: black;
}

.btn:hover {
    background-color: #ff0000;
}

.accmgmt-hero-content {
    padding-top: 40%;
    text-align: center;
    width: 100%;
}

.signals-hero-content {
    padding-top: 32%;
    text-align: center;
    width: 100%;
}

.form-section {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    outline: none;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="date"]::placeholder,
input[type="time"]::placeholder {
    color: #ccc;
}

.radio-group {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}

.radio-group input[type="radio"] {
    margin-right: 10px;
}

.form-footer {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

input[type="submit"] {
    display: block;
    width: 20%;
    padding: 10px;
    margin-bottom: 30px;
    background-color: #000;
    border-radius: 8px;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:disabled {
    background-color: #999;
    cursor: not-allowed;
}

input::placeholder,
textarea::placeholder {
    color: white;
}

textarea {
    height: 150px;
  resize: none;
}

.contact-form {
    width: 60%;
    margin: 100px auto;
    margin-top: 41vh;
    background-color: rgba(34, 34, 34, 0.85); /* Transparent background */
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Slight shadow for elevation */
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

#course-title {
    padding-top: 120%;
}

#contract-content {
    padding-top: 30%;
}

#payment-section {
    padding-top: 20%;
}

#pymtbtn {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-form {
        width: 90%;
        margin-top: 150px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 4px 0;
    transition: 0.3s;
}