* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Aptos', sans-serif;
    overflow: hidden;
}

header {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 100;
}

header .logo {
    color: white;
    font-size: 2.44rem;
    margin: 0;
}

.raleway {
    font-family: 'Raleway', sans-serif;
}

nav {
    position: fixed;
    top: calc(2rem + 15px);
    left: 75%;
    transform: translateX(-50%);
    padding: 0 2rem;
    z-index: 100;
    width: 50%;
    text-align: center;
}

.nav-right a {
    color: white;
    text-decoration: none;
    margin-left: 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    transition: opacity 0.3s;
}

.nav-right a:hover {
    opacity: 0.8;
}

.page-container {
    height: 100vh;
    position: relative;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}

.left-half {
    width: 50%;
    height: 100%;
    background-color: #8B8F86;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5%;
    color: white;
}

.right-half {
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.right-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.description {
    font-size: 1.49rem;
    margin-top: 0.5rem;
    max-width: 95%;
    line-height: 1.35;
}

.page2-title, .page3-title {
    font-size: 2.59rem;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0;
    padding-top: 0;
}

#page2 .left-half {
    padding-top: calc(5% + 2.59rem);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 200;
}

.bar {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    body {
        overflow: hidden;
    }

    .page-container {
        height: 100vh;
        overflow: hidden;
    }

    .page {
        position: absolute;
        height: 100vh;
        transform: none;
    }

    .hamburger {
        display: flex;
        top: 2.5rem;
        right: 2rem;
    }

    header {
        z-index: 150;
        top: 2.5rem;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        gap: 2rem;
        z-index: 140;
    }

    .nav-right a {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    nav {
        background: none;
    }

    .nav-right.active {
        right: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .page {
        flex-direction: column;
    }

    .left-half, .right-half {
        width: 100%;
        height: 50vh;
    }

    header .logo {
        font-size: 2rem;
    }

    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 0;
        background: none;
        transform: none;
    }

    .nav-right a {
        margin-left: 1rem;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1.1rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .left-half p.raleway {
        font-size: 1.8rem;
    }

    #page4 .columns {
        flex-direction: column;
        gap: 2rem;
    }

    #page4 .header-text p {
        font-size: 1.2rem;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .contact-info h2 {
        font-size: 1.5rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
    }

    .contact-info h4 {
        font-size: 1.2rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .navigation {
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    header {
        left: 1rem;
    }

    header .logo {
        font-size: 1.5rem;
    }

    #page4 .full-width,
    #page5 .full-width {
        padding: 15% 5% 5%;
    }
}

.left-half p.raleway {
    font-size: 2.59rem;
    line-height: 1.6;
    font-weight: 700;
}

#page4 .full-width {
    width: 100%;
    height: 100%;
    background-color: #8B8F86;
    padding: 5%;
    color: white;
}

#page4 .header-text {
    max-width: 90%;
    margin: 0 auto;
    padding: 1.2rem;
    background-color: rgba(60, 46, 43, 0.8);
    border-radius: 10px;
    margin-top: 4rem;
}

#page4 .header-text p {
    font-size: 1.5rem;
    line-height: 1.4;
}

#page4 .columns {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

#page4 .column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#page4 h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

#page4 ul {
    list-style: disc;
    margin-top: 0.8rem;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

#page4 ul li {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

#page4 .column p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

#page5 .full-width {
    width: 100%;
    height: 100%;
    background-color: #3C2E2B;
    padding: 12% 10% 8%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.contact-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: left;
    width: 100%;
    margin-top: 4rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-info h3 {
    font-size: 1.6rem;
    font-weight: normal;
}

.contact-info h4 {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 1rem;
}

.contact-link {
    color: #8B8F86;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: white;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.form-input {
    flex: 1;
    padding: 1rem 1.2rem;
    height: 3.5rem;
    border: none;
    border-radius: 8px;
    background-color: #3C2E2B;
    color: white;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.form-input:focus {
    background-color: #3C2E2B;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.form-input.full-width {
    width: 100%;
    height: 3.5rem;
    text-align: left;
}

.message-area {
    resize: none;
    height: 120px;
    font-family: 'Aptos', sans-serif;
}

.char-limit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
    margin-top: -1rem;
}

.submit-row {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.submit-btn {
    background-color: white;
    color: #8B8F86;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
    min-width: 180px;
}

.submit-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.navigation {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 100;
    color: white;
    transition: opacity 0.3s;
}

.page-counter {
    font-size: 1.2rem;
}

.current-page {
    color: #FF4A4A;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-buttons button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s;
}

.nav-buttons button:hover {
    opacity: 0.8;
}