* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    width: 100%;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    gap: 50vw;
}

.logo img {
    margin-top: 16px;
    width: 200px;
}

.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;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff0000;
}

.hero {
    background-image: url('../assets/bkg.jpg');
    background-size: cover;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2.5%;
}

.hero-content {
    max-width: 1200px;
}

.accmgmt-hero {
    background-image: url('../assets/bkg2.png');
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2.5%;
}

.accmgmt-heroquest {
    background-image: url('../assets/bk2ext.png');
    background-size: cover;    
    display: flex;
    flex-direction: column;
    padding-top: 26%;
    align-items: flex-start;
}

.title-wrapper {
    text-align: center;
    width: 100%;
}

.subpg-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 900;
    width: 100%;
}

.form-wrapper {
    padding-left: 30px;
    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: 15%;
    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;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.3s;
}

/* Responsive Styles */
@media (max-width:480px) {
    .logo img {
        max-width: 100%;
        height: auto;
        margin-top: 3px;
        margin-left: -10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        padding-top: 30px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    #home-title {
        font-size: 3rem;
        margin-bottom: 4px;
        color: #fff;
        font-weight: 900;
        text-shadow: 2px 2px 4px #000;
    }

    .ctabtn {
        background-color: #ff0000;
        color: white;
        padding: 10px 30px;
        text-decoration: none;
        font-size: 1rem;
        border-radius: 8px;
        border: none;
        transition: background-color 0.3s;
        display: inline-block;
    }

    .hero {
        background-size: cover;
        min-height: 100vh; /* Set minimum height instead of fixed */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 2.5%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .logo img {
        max-width: 62%;
        height: auto;
        margin-top: 4px;
        margin-left: -10px;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        padding-top: 30px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .logo img {
        width: 100px;
        height: auto;
        margin-top: 34px;
        margin-left: -10px;
    }

    nav {
        display: flex;
        gap: 42vw;
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 24px;
        margin: 0;
        padding: 0;
        margin-top: 35px;
        width: 50%;
        font-size: 1.4rem;
    }

    .nav-links li {
        clear: both;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        font-weight: 500;
    }

    .nav-links a {
        text-decoration: none;
        color: #fff;
        font-size: 1rem;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: #ff0000;
    }

    .hero {
        background-image: url('../assets/bkg1024.png');
        background-size: 100%;
        height: 100vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 2.5%;
    }

    .hero-content {
        max-width: 700px;
    }

    #home-title {
        font-size: 2.2rem;
        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;
    }
}

@media (min-width: 1025px) {
    .logo img {
        margin-top: 16px;
        width: 200px;
    }

    nav {
        display: flex;
        gap: 50vw;
    }

    .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;
    }

    .nav-links a {
        text-decoration: none;
        color: #fff;
        font-size: 1rem;
        transition: color 0.3s;
    }
    
    .nav-links a:hover {
        color: #ff0000;
    }

    .hero {
        background-image: url('../assets/bkg.jpg');
        background-size: 100%;
        height: 100vh;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 2.5%;
    }

    .hero-content {
        max-width: 1000px;
    }

    #home-title {
        font-size: 3.2rem;
        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;
    }
}