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

:root {
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-text: #666666;
    --gray-dark: #333333;
    --black: #000000;
    --border-radius: 20px;
    --border-radius-small: 12px;
    --transition: all 0.3s ease;
}

@font-face {
    font-family: 'Momo Trust Display';
    src: url('fonts/MomoTrustDisplay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins";
    src: url('fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins";
    src: url('fonts/Poppins/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "poppins";
    src: url('fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins";
    src: url('fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "poppins";
    src: url('fonts/Poppins/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    font-family: 'Momo Trust Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: auto;
}

.app-container {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow-x: hidden;
}

.app-header {
    padding: 61px 0 0;
    text-align: center;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

/* Hamburger Menu Button */
.hamburger-menu-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hamburger-menu-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.hamburger-menu-btn.active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hamburger-menu-btn span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 100vh;
}

.menu-close-btn {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
}

.menu-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: rotate(90deg);
}

.menu-close-btn svg {
    width: 20px;
    height: 20px;
}

/* Menu Sidebar (Left) */
.menu-sidebar {
    width: 20%;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 60px 30px 40px;
    position: relative;
}

.menu-logo-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.menu-logo-image {
    width: 120px;
    height: auto;
    opacity: 1;
}

/* Menu Divider */
.menu-divider {
    width: 1px;
    background-color: #666666;
    flex-shrink: 0;
}

/* Menu Main (Right) */
.menu-main {
    width: 80%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
    overflow-y: auto;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 500px;
    align-items: flex-start;
    padding-left: 20px;
}

.menu-item {
    font-family: 'Momo Trust Display', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
    display: block;
    position: relative;
    letter-spacing: 0.5px;
}

.menu-item:hover {
    color: #ffffff;
    transform: translateX(10px);
    opacity: 0.9;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 11px;
}

.welcome-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Momo Trust Display', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 100%;
}

.welcome-line {
    color: #ffffff;
    display: block;
}

.cleopatra-line {
    color: #F5B83A;
    display: block;
}

.tagline-text {
    margin-top: 11px;
    font-family: "poppins", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #D6D6D6;
}

.stats-text {
    margin-top: 117px;
    font-family: 'Momo Trust Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #D6D6D6;
}

.stats-text .stat-number {
    color: #F5B83A;
}

.awards-text {
    margin-top: 56px;
    font-family: 'Momo Trust Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #D6D6D6;
}

.awards-text .awards-number {
    color: #F5B83A;
}

.home-page {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.home-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/home-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

.home-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.home-page .app-container {
    position: relative;
    z-index: 1;
    background-color: transparent;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-section {
    padding: 0 30px 30px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    min-height: 0;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.start-button {
    width: 100%;
    background: linear-gradient(90deg, #80613B 0%, #EFAA17 100%);
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 200px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(128, 97, 59, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.start-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.start-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 170, 23, 0.4);
}

.start-button:active {
    transform: translateY(0);
}

.form-header {
    padding: 12px 0 0 !important;
}

.form-logo-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.step-indicator {
    display: flex;
    gap: 4px;
    padding: 0 20px 12px;
    position: relative;
    z-index: 10;
}

.step-line {
    flex: 1;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: var(--transition);
}

.step-line.active {
    background-color: #F6BB40;
    box-shadow: 0 0 8px rgba(246, 187, 64, 0.5);
}

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

.form-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    z-index: -2;
}

.form-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/cleopatra-logo-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: -1;
}

.form-page .app-container {
    background-color: transparent;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.form-container {
    padding: 0 15px 16px;
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.form-modal {
    width: 100%;
    background-color: var(--white);
    border-radius: 40px;
    padding: 30px 30px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-title {
    font-family: 'Momo Trust Display', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #000000;
    margin-bottom: 37px;
}

.form-description {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 24px;
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.option-button {
    width: 100%;
    background-color: var(--gray-light);
    border: none;
    padding: 21px 28px;
    border-radius: 12px;
    font-family: "poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: var(--gray-text);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.option-button:hover {
    background-color: var(--gray-medium);
}

.option-button.selected {
    background-color: #000000;
    color: #F6BB40;
    position: relative;
    padding-right: 50px;
}

.option-button.selected:hover {
    background-color: #1a1a1a;
}

.option-button.selected::after {
    content: '';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9 18C10.1819 18 11.3522 17.7672 12.4442 17.3149C13.5361 16.8626 14.5282 16.1997 15.364 15.364C16.1997 14.5282 16.8626 13.5361 17.3149 12.4442C17.7672 11.3522 18 10.1819 18 9C18 7.8181 17.7672 6.64778 17.3149 5.55585C16.8626 4.46392 16.1997 3.47177 15.364 2.63604C14.5282 1.80031 13.5361 1.13738 12.4442 0.685084C11.3522 0.232792 10.1819 -1.76116e-08 9 0C6.61305 3.55683e-08 4.32387 0.948211 2.63604 2.63604C0.948212 4.32387 0 6.61305 0 9C0 11.3869 0.948212 13.6761 2.63604 15.364C4.32387 17.0518 6.61305 18 9 18ZM8.768 12.64L13.768 6.64L12.232 5.36L7.932 10.519L5.707 8.293L4.293 9.707L7.293 12.707L8.067 13.481L8.768 12.64Z' fill='%23FFC03D'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 36px;
    justify-items: center;
}

.option-button-image {
    width: 100%;
    max-width: 170px;
    aspect-ratio: 170 / 124;
    min-height: 100px;
    border: none;
    border-radius: 12px;
    font-family: "poppins", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.option-button-image[data-image="gercekci"] {
    background-image: url('images/gercekci.png');
}

.option-button-image[data-image="black-grey"] {
    background-image: url('images/black-grey.png');
}

.option-button-image[data-image="renkli"] {
    background-image: url('images/renkli.png');
}

.option-button-image[data-image="minimal"] {
    background-image: url('images/minimal.png');
}

.option-button-image[data-image="ince-cizgi"] {
    background-image: url('images/ince-cizgi.png');
}

.option-button-image[data-image="japon"] {
    background-image: url('images/japon.png');
}

.option-button-image[data-image="yazi"] {
    background-image: url('images/yazi.png');
}

.option-button-image.selected[data-image="gercekci"] {
    background-image: url('images/gercekci-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image.selected[data-image="black-grey"] {
    background-image: url('images/black-grey-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image.selected[data-image="renkli"] {
    background-image: url('images/renkli-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image.selected[data-image="minimal"] {
    background-image: url('images/minimal-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image.selected[data-image="ince-cizgi"] {
    background-image: url('images/ince-cizgi-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image.selected[data-image="japon"] {
    background-image: url('images/japon-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image.selected[data-image="yazi"] {
    background-image: url('images/yazi-selected.png');
    background-size: 100% 100%;
    background-position: center;
}

.option-button-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.option-button-image.selected {
    box-shadow: 0 0 0 3px #F6BB40;
}

.button-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-top: 36px;
    width: 100%;
}

.back-button {
    flex: 0 0 35%;
    background-color: transparent;
    border: 1px solid #000000;
    padding: 16px;
    border-radius: 200px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.button-group .continue-button {
    flex: 0 0 calc(65% - 12px);
    margin: 0;
    padding: 20px;
}

.button-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.back-button-full {
    width: 100%;
    background-color: transparent;
    border: 1px solid #000000;
    padding: 16px;
    border-radius: 200px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Momo Trust Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}

.back-button-full svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.back-button-full:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.button-group-vertical .continue-button {
    margin: 0;
    padding: 20px;
}

.form-description-text {
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #9E9E9E;
    margin-top: 34px;
    margin-bottom: 13px;
}

.form-contact-description {
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #9E9E9E;
    margin: 0;
    margin-bottom: 36px;
}

.form-quote {
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    margin: 0;
    margin-bottom: 36px;
}

.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: var(--border-radius-small);
    padding: 4px 16px;
    border: 2px solid #CACACA;
    transition: var(--transition);
}

.input-group:focus-within {
    border-color: var(--gold);
    background-color: var(--white);
}

.input-icon {
    font-size: 20px;
    margin-right: 12px;
    color: var(--gray-text);
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    outline: none;
}

.input-group input::placeholder {
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
}

/* Phone Input with Country Code */
.input-group-phone {
    flex-wrap: wrap;
    padding-bottom: 0;
}

.phone-country-code {
    border: none;
    background: transparent;
    padding: 14px 6px 14px 0;
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #000000;
    outline: none;
    width: fit-content;
    min-width: 4ch;
    cursor: pointer;
    margin-right: 8px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23000000' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right;
}

.phone-country-code:focus {
    outline: none;
}

.input-group-phone input[type="tel"] {
    flex: 1;
    min-width: 120px;
}

.phone-error {
    width: 100%;
    padding: 8px 16px 12px;
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    color: #DC2626;
    margin-top: 4px;
}

.input-group-phone.has-error {
    border-color: #DC2626;
}

.input-group-phone.has-error:focus-within {
    border-color: #DC2626;
}

.confirmation-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.confirmation-logo-image {
    width: 60px;
    height: auto;
    margin-bottom: 16px;
}

.confirmation-brand {
    font-family: 'Momo Trust Display';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-align: center;
    color: #000000;
    margin: 0;
    margin-bottom: 51px;
}

.confirmation-title {
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #000000;
    margin: 0;
    margin-bottom: 25px;
    max-width: 400px;
}

.confirmation-subtitle {
    font-family: "poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: #A87B2E;
    margin: 0;
    margin-bottom: 40px;
}

.home-button {
    width: 100%;
    max-width: 400px;
    background-color: transparent;
    border: 1px solid #000000;
    padding: 16px;
    border-radius: 200px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Momo Trust Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #000000;
}

.home-button svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.home-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.continue-button {
    width: 100%;
    background-color: #EFEFEF;
    border: none;
    padding: 20px 0;
    border-radius: 200px;
    color: #B1B1B1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Momo Trust Display';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.025em;
}

.form-step > .continue-button {
    margin: 36px 0 0 0;
    padding: 20px 30px;
}

.continue-button:not(:disabled) {
    background: linear-gradient(90deg, #80613B 0%, #EFAA17 100%);
    color: #ffffff;
    border-radius: 200px;
    box-shadow: 0 2px 8px rgba(128, 97, 59, 0.3);
}

.continue-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 170, 23, 0.4);
}

.continue-button:not(:disabled):active {
    transform: translateY(0);
}

.continue-button:disabled {
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .app-container {
        max-width: 100%;
    }

    .logo-text {
        font-size: 16px;
        padding: 5px 14px;
    }

    .logo-icon {
        font-size: 36px;
    }

    .form-modal {
        padding: 24px 30px 36px;
    }

    .form-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .option-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .welcome-text {
        font-size: 40px;
    }

    .stats-text {
        margin-top: 60px;
        font-size: 22px;
    }

    .awards-text {
        margin-top: 35px;
        font-size: 22px;
    }

    .hamburger-menu-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .menu-content {
        flex-direction: column;
    }

    .menu-sidebar {
        width: 100%;
        height: auto;
        min-height: 150px;
        padding: 40px 20px 30px;
        justify-content: center;
        align-items: center;
    }

    .menu-logo-image {
        width: 200px;
    }

    .menu-divider {
        width: 100%;
        height: 1px;
    }

    .menu-main {
        width: 100%;
        padding: 40px 24px;
    }

    .menu-item {
        font-size: 24px;
        padding: 10px 0;
    }

    .menu-close-btn {
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .menu-item:hover {
        transform: translateX(8px);
    }
}

@media (max-width: 400px) {
    .option-button-image {
        font-size: 12px;
        padding-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .button-group {
        flex-direction: column;
        gap: 12px;
    }

    .back-button {
        flex: 1;
        order: 2;
    }

    .button-group .continue-button {
        flex: 1;
        order: 1;
    }

    .hero-illustration {
        height: 250px;
    }

    .start-button {
        padding: 16px 30px;
        font-size: 16px;
    }

    .hero-section {
        padding: 0 20px 20px;
    }

    .form-title {
        font-size: 20px;
    }

    .welcome-text {
        font-size: 36px;
    }

    .tagline-text {
        font-size: 14px;
    }

    .stats-text {
        font-size: 20px;
        margin-top: 80px;
    }

    .awards-text {
        font-size: 20px;
        margin-top: 40px;
    }

    .hero-section {
        padding: 0 20px 20px;
    }
}

@media (max-width: 360px) {
    .welcome-text {
        font-size: 28px;
    }

    .tagline-text {
        font-size: 12px;
    }

    .stats-text {
        font-size: 18px;
        margin-top: 60px;
    }

    .awards-text {
        font-size: 18px;
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    .app-container {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 0;
    }
}
