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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #25201C;
    color: white;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    background-color: #25201C;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    right: 0;
    padding: 24px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1000;
    background: transparent;
}

/* Hamburger Menu */
.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* Full Screen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(37, 32, 28, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.fullscreen-menu.active {
    transform: translateY(0);
}

.menu-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.menu-link {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;
    transition: opacity 0.2s ease;
    display: block;
    padding: 12px 0;
}

.menu-link:hover {
    opacity: 0.7;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 8px;
}

.menu-sublinks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 24px;
}

.menu-sublink {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    border: 1px solid transparent;
}

.menu-sublink:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.sublink-title {
    color: white;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.3px;
}

.sublink-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Section */
.left-section {
    position: relative;
    overflow: hidden;
    background-color: #25201C;
}

/* Right Section */
.right-section {
    background-color: #25201C;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.text-content {
    max-width: 500px;
}

.main-heading {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.sub-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: white;
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .left-section {
        min-height: 50vh;
    }

    .right-section {
        min-height: 50vh;
        padding: 60px 40px;
    }

    .main-heading {
        font-size: 36px;
    }

    .navbar {
        padding: 20px 24px;
    }

    .menu-content {
        padding: 100px 24px 40px;
        gap: 40px;
    }

    .menu-link {
        font-size: 28px;
    }

    .menu-section-title {
        font-size: 28px;
    }

    .sublink-title {
        font-size: 18px;
    }

    .sublink-description {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .container {
        margin: 0;
        border-radius: 0;
    }

    .main-heading {
        font-size: 28px;
    }

    .sub-text {
        font-size: 16px;
    }

    .navbar {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 13px;
    }
}
