:root {
    --examly-verde-kappa: #16935d;
    --examly-nebula-100: #fdfede;
    --examly-kappa-700: #26614d;
}

body {
    margin: 0;
    padding: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.landing-page {
    width: 100%;
    height: calc(100vh - 48px);
    padding: 16px;
    background: var(--examly-verde-kappa);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    overflow-x: auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
}

.header {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    display: flex;
}

.logo {
    width: 144.22px;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.logo-piece {
    position: absolute;
    background: #fefe62;
}


.tagline {
    color: var(--examly-nebula-100);
    font-size: 20px;
    font-weight: 700;
    word-wrap: break-word;
}

.download-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    display: flex;
}

.download-title {
    color: var(--examly-nebula-100);
    font-size: 16px;
    font-weight: 400;
    word-wrap: break-word;
}

.download-button {
    width: 119.66px;
    height: 40px;
    background: var(--examly-kappa-700);
    border: none;
    cursor: pointer;
}

/* Divider */
.divider {
    width: 100%;
    height: 2px;
    background-color: #65AE91;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* Coming Soon Section */
.coming-soon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.coming-soon-text {
    color: #FDFEDE;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}

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

.platform {
    color: #FDFEDE;
    font-size: 14px;
    font-weight: 400;
}

/* Footer */
.footer {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.footer-link {
    color: #8FC4AB;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Policy Page Styles */
.policy-box {
    width: 100%;
    max-width: 800px;
    background: #FDFDFD;
    border-radius: 36px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.policy-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.back-button {
    background: #B9DAC5;
    color: #1E5543;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

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

.policy-title {
    color: #1B4538;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    word-wrap: break-word;
}

.policy-content {
    background: #E4EFE9;
    border-radius: 36px;
    padding: 16px;
    color: #101E17;
    font-size: 14px;
    line-height: 1.6;
    max-height: 400px;
    overflow-y: auto;
}

.policy-content h2 {
    color: #101E17;
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin: 0 0 12px 0;
}

.policy-content ul {
    margin: 0 0 12px 20px;
    padding: 0;
}

.policy-content li {
    margin-bottom: 6px;
}

/* Custom scrollbar for policy content */
.policy-content::-webkit-scrollbar {
    width: 6px;
}

.policy-content::-webkit-scrollbar-track {
    background: transparent;
}

.policy-content::-webkit-scrollbar-thumb {
    background: #B9DAC5;
    border-radius: 3px;
}

.policy-content::-webkit-scrollbar-thumb:hover {
    background: #9BC7B1;
}

/* Contact Page Styles */
.contact-box {
    width: 470px;
    max-width: 470px;
    background: #FDFDFD;
    border-radius: 36px;
    padding: 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.back-button-contact {
    background: #C2F0F9;
    color: #1D3A40;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.back-button-contact:hover {
    opacity: 0.8;
}

.contact-title {
    color: #3A6974;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    word-wrap: break-word;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-input, .form-textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #E0E0E0;
    padding: 12px 0;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    color: #333;
    outline: none;
    transition: border-bottom-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    border-bottom-color: #3A6974;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-buttons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.btn-cancel, .btn-send {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-cancel {
    background: transparent;
    color: #495057;
    border: 2px solid #495057;
}

.btn-cancel:hover {
    background: #495057;
    color: white;
}

.btn-send {
    background: #60AFC2;
    color: #F3FCFE;
    border: 2px solid #60AFC2;
}

.btn-send:hover {
    background: #4A9BB0;
    border-color: #4A9BB0;
}

/* Mobile responsiveness for contact form */
@media (max-width: 480px) {
    .form-buttons {
        flex-direction: column;
    }
    
    .contact-box {
        max-width: 100%;
        margin: 0 8px;
    }
}

