@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

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

body {
    font-family: 'Titillium Web', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #0E2050 0%, #009FE3 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
}

.hero-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow:
            0 25px 50px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-container {
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.schema-container {
    position: relative;
    padding-bottom: 30px;
}

.schema {
    max-width: 900px;
    width: 100%;
    height: auto;
}

.logo {
    width: 280px;
    max-width: 80%;
    height: auto;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #0E2050, #009FE3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
}

.store-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.store-button {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.store-buttons img {
    height: 60px;
    width: auto;
    border-radius: 12px;
}

.cta-section {
    margin-top: 60px;
    position: relative;
    z-index: 3;
}

.links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #0E2050;
    color: white;
    text-decoration: none;
    border-radius: 26px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button:hover {
    box-shadow: 0 8px 25px rgba(14, 32, 80, 0.4);
}

.button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button.secondary {
    background: #009FE3;
}

.button.secondary:hover {
    box-shadow: 0 8px 25px rgba(0, 159, 227, 0.4);
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.input-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.input-group {
    width: 100%;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1e293b;
    background-color: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

input:focus, textarea:focus {
    border-color: #0E2050;
    box-shadow: 0 0 0 3px rgba(14, 32, 80, 0.1);
    background-color: rgba(255, 255, 255, 1);
}

input:hover:not(:focus), textarea:hover:not(:focus) {
    border-color: #cbd5e1;
}

input::placeholder, textarea::placeholder {
    color: #64748b;
    opacity: 1;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.input-error {
    border-color: #ef4444 !important;
    background-color: rgba(254, 242, 242, 0.9) !important;
}

.error-text {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

/* Document Page Styles */
.document-page {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.document-page h1 {
    text-align: center;
    margin-bottom: 10px;
}

.last-updated {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 40px;
    font-style: italic;
}

.document-content {
    margin: 40px 0;
}

.document-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.document-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.document-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0E2050;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #009FE3;
    display: inline-block;
}

.document-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 25px 0 15px 0;
}

.document-section p {
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.7;
}

.document-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.document-section li {
    color: #374151;
    margin-bottom: 8px;
    line-height: 1.6;
}

.document-section a {
    color: #0E2050;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.document-section a:hover {
    border-bottom-color: #0E2050;
}

.document-section strong {
    color: #1e293b;
    font-weight: 600;
}

.note {
    background: rgba(14, 32, 80, 0.05);
    border-left: 4px solid #009FE3;
    padding: 16px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 30px;
        margin: 20px 10px;
    }

    .document-page {
        text-align: left;
    }

    .document-section h2 {
        font-size: 1.3rem;
    }

    .document-section h3 {
        font-size: 1.1rem;
    }

    .links {
        flex-direction: column;
        gap: 15px;
    }

    .button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .store-buttons img {
        height: 60px;
    }

    .contact-form {
        max-width: 100%;
    }

    .input-container {
        gap: 20px;
    }

    input, textarea {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

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

    .subtitle {
        font-size: 1.2rem;
    }

    .button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 2rem;
    }

    .document-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .document-section h2 {
        font-size: 1.2rem;
    }
}

html {
    scroll-behavior: smooth;
}