:root {
    --primary-blue: #2C5AA0;
    --success-green: #28A745;
    --pure-white: #FFFFFF;
    --deep-navy: #1A2B4A;
    --vibrant-orange: #FF6B35;
    --warm-yellow: #FFC107;
    --soft-coral: #FF8066;
    --light-gray: #F8F9FA;
    --pale-blue: #E8F4F8;
    --soft-mint: #E8F5E9;
    --cream: #FFF9E6;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --border-color: #E0E0E0;
}

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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--pure-white);
    overflow-x: hidden;
}

.uk-container {
    max-width: 1200px;
}

.main-nav {
    background: var(--pure-white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.lang-link.active {
    opacity: 1;
    font-weight: 600;
    color: var(--primary-blue);
}

.lang-sep {
    opacity: 0.3;
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--pale-blue) 0%, var(--soft-mint) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--deep-navy);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--vibrant-orange);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background: var(--soft-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: var(--pure-white);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.content-block {
    text-align: center;
    padding: 2rem;
    background: var(--pure-white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--success-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--pure-white);
}

.content-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.content-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.visual-element {
    text-align: center;
    margin-top: 3rem;
}

.section-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.education-section {
    background: var(--pure-white);
}

.format-section {
    background: var(--light-gray);
}

.format-content {
    max-width: 900px;
    margin: 0 auto;
}

.format-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--deep-navy);
}

.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.format-item {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}

.format-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--pale-blue);
    line-height: 1;
    margin-bottom: 1rem;
}

.format-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.format-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.tools-section {
    background: var(--pure-white);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.tool-card {
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.tool-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.tool-content {
    padding: 2rem;
}

.tool-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.tool-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-badge.positive {
    background: var(--soft-mint);
    color: var(--success-green);
}

.feature-badge.negative {
    background: var(--cream);
    color: #856404;
}

.security-section {
    background: var(--pale-blue);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-navy);
}

.security-text > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.security-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    min-width: 40px;
}

.security-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.security-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.security-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-section {
    background: var(--pure-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-navy);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(44, 90, 160, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-section {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--deep-navy);
}

.contact-info > p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-block i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    min-width: 35px;
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.contact-form-wrapper {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.iti, #phone {
    width: 100%;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    min-width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--vibrant-orange);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-button:hover {
    background: var(--soft-coral);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.main-footer {
    background: var(--deep-navy);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-lang h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--pure-white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.lang-switch-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lang-switch-footer .lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-switch-footer .lang-link.active {
    color: var(--pure-white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--light-gray);
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon i {
    font-size: 3rem;
    color: var(--pure-white);
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.next-steps {
    background: var(--pure-white);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--deep-navy);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-item {
    text-align: center;
}

.step-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--deep-navy);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-blue);
    color: var(--pure-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
    color: var(--pure-white);
}

.contact-reminder {
    background: var(--pale-blue);
    padding: 2rem;
    border-radius: 10px;
}

.contact-reminder p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.policy-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.policy-content {
    background: var(--pure-white);
    padding: 4rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.policy-content h1 {
    font-size: 3rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.update-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

.policy-block {
    margin-bottom: 2.5rem;
}

.policy-block h2 {
    font-size: 1.8rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.policy-block h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin: 1.5rem 0 0.75rem;
}

.policy-block h4 {
    font-size: 1.1rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.policy-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-block ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.policy-block a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.policy-footer {
    background: var(--pale-blue);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.policy-footer p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.cookie-settings-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-blue);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cookie-settings-btn:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    color: var(--pure-white);
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text p {
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-banner-text a {
    color: var(--warm-yellow);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--success-green);
    color: var(--pure-white);
}

.cookie-btn-accept:hover {
    background: #218838;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cookie-btn-settings:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 992px) {
    .hero-grid,
    .content-grid,
    .format-grid,
    .tools-grid,
    .security-content,
    .contact-grid,
    .footer-content,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .fullscreen-section {
        min-height: auto;
        padding: 3rem 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .format-number {
        font-size: 3rem;
    }

    .policy-content {
        padding: 2rem;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.lang-link) {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }
}