:root {
    --typography500: #000000;
    --typography400: #6a6c72;
    --primary500: #ff7a00;
    --white100: #ffffff;
}

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

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
}

.container {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

.left-section {
    flex: 1;
    position: relative;
    background: linear-gradient(to bottom right, #caad92, #c19063);
    height: 100vh;
    overflow: hidden;
}

.left-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.app-download {
    position: absolute;
    bottom: 80px;
    left: 32px;
    color: var(--white100);
    z-index: 10;
}

.app-download h2 {
    color: var(--white100);
    display: block;
    max-width: 275px;
    margin-bottom: 24px;
    text-align: left;
    font-family: 'Sora', sans-serif;
    font-style: normal;
    font-weight: 100rem;
    font-size: 16px;
    line-height: 20px;
}


.app-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-buttons a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.app-buttons a:hover {
    opacity: 0.8;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: white;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.content {
    max-width: 28rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.logo {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

.title {
    margin-bottom: 32px;
}

.title p {
    color: var(--typography500);
    font-family: 'Sora', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 25px;
    text-align: left;
}

.instructions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.instruction-item {
    display: flex;
    align-items: start;
    gap: 12px;
}

.instruction-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.instruction-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6a6c72;
}

.qr-code-section {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.qr-code {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
}

.disclaimer {
    color: var(--typography400);
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 24px;
}

.disclaimer .link {
    color: var(--primary500);
    font-weight: bold;
    cursor: pointer;
}

.disclaimer .link:hover {
    text-decoration: underline;
}

.accordion {
    width: 100%;
}

.accordion-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-top: 1px solid #e5e7eb;
    cursor: pointer;
    color: #374151;
    font-size: 14px;
    transition: opacity 0.3s;
}

.accordion-button:hover {
    opacity: 0.8;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.accordion-icon.open {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s;
}

.accordion-content.open {
    max-height: 192px;
    padding: 16px 0;
}

.access-button {
    width: 100%;
    padding: 12px 24px;
    background: white;
    border: 2px solid #ff7a00;
    border-radius: 6px;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.access-button:hover {
    background: #ff7a00;
    color: white;
}

@media (max-width: 1024px) {
    .left-section {
        display: none;
    }

    .right-section {
        padding: 32px;
    }
}