﻿/* --- GENERAL STYLES --- */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    font-weight: 400; /* Regular/thin font weight for body text */
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    background: #fff;
    padding: 10px 40px;
    border-bottom: 1px solid #ddd;
}

.header-container {
    flex-direction: row;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: auto;
    max-width: 300px;
}

/* --- HEADER & NAVIGATION --- */
.logo a, .logo a:hover {
    /* Removes the underline or border browsers might add to linked images */
    border: none;
    text-decoration: none;
}

.main-nav ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

    .main-nav ul li {
        display: inline;
        margin: 0 5px;
    }

        .main-nav ul li a.nav-button {
            color: #fff;
            background-color: #1431A4;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 20px;
            transition: background-color 0.3s;
        }

            .main-nav ul li a.nav-button:hover,
            .main-nav ul li a.nav-button.active {
                background-color: #0f257e;
            }

/* --- HERO IMAGES --- */
.hero-support, .hero-training, .hero-tokens, .hero-register, .hero-home {
    background-size: cover;
    background-position: center;
    height: 200px;
}

.hero-support {
    background-image: url('Images/Hero Images/hero-image-support.jpg');
}

.hero-training {
    background-image: url('Images/Hero Images/hero-image-training.jpg');
}

.hero-tokens {
    background-image: url('Images/Hero Images/hero-image-tokens.jpg');
}

.hero-register {
    background-image: url('Images/Hero Images/hero-image-register.jpg');
}

.hero-home {
    background-image: url('Images/Hero Images/hero-image-home.jpg');
}

/* --- MAIN CONTENT & LAYOUT --- */
.content-container {
    max-width: 950px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    color: #1431A4;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

    .page-title .subtitle {
        font-weight: 400;
    }

.section-title {
    text-align: center;
    color: #1431A4;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 60px;
    margin-bottom: 20px;
}

    .section-title .subtitle {
        font-weight: 400;
    }

.intro-text {
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* --- HOME PAGE STYLES --- */
.home-section {
    margin-bottom: 50px;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

.about-epc-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.about-column {
    flex: 1;
    text-align: center;
}

.about-icon {
    height: 40px;
    margin-bottom: 10px;
}

.about-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    margin-top: 0;
}

.about-column p {
    font-size: 14px;
    margin: 0;
}

.about-image {
    max-width: 100%;
    border-radius: 8px;
}

/* --- SUPPORT PAGE STYLES --- */
.support-categories {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 60px;
}

.category-box {
    flex: 1;
    padding: 0 20px;
}

.category-icon img {
    height: 50px;
    margin-bottom: 15px;
}

.category-box h3 {
    font-size: 20px;
    color: #1431A4;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

.category-box p {
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.contact-section {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-column {
    flex: 1;
}

    .contact-column h2 {
        font-size: 24px;
        color: #1431A4;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 25px;
    }

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

.contact-form input[type="text"], .contact-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 4px;
    box-sizing: border-box;
}

.send-button {
    background-color: #1431A4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s;
}

    .send-button:hover {
        background-color: #0f257e;
    }

.contact-info a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

    .contact-info a:hover {
        text-decoration: underline;
    }

.faq-section {
    margin-top: 40px;
}

    .faq-section h2 {
        text-align: center;
        color: #1431A4;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 40px;
    }

.faq-item {
    margin-bottom: 30px;
}

    .faq-item h3 {
        font-size: 18px;
        color: #1431A4;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .faq-item p {
        font-size: 15px;
        color: #555;
        margin-top: 0;
        font-weight: 400;
    }

/* --- TRAINING PAGE STYLES --- */
.training-intro-section {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.training-column-left {
    flex: 1;
}

.training-column-right {
    flex: 1;
}

    .training-column-left h2, .training-column-right h3 {
        color: #1431A4;
        font-weight: 700;
        font-size: 26px;
        line-height: 1.2;
        margin-top: 0;
    }

.training-column-left p {
    font-size: 15px;
    color: #555;
    font-weight: 400;
}

.topics-list {
    list-style: none;
    padding-left: 0;
}

    .topics-list li {
        padding-left: 30px;
        position: relative;
        margin-bottom: 15px;
        font-size: 16px;
    }

        .topics-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 16px;
            width: 16px;
            background-color: #6c757d;
            border-radius: 50%;
        }

.training-resources-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.resource-box {
    flex: 1;
}

.resource-header {
    background-color: #1431A4;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
    display: inline-block;
}

.resource-box p {
    font-size: 14px;
    color: #555;
    padding: 0 10px;
}

/* --- TOKENS PAGE STYLES --- */
.token-usage-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.usage-step {
    flex: 1;
    padding: 0 15px;
}

    .usage-step img {
        height: 60px;
        margin-bottom: 15px;
    }

    .usage-step p {
        font-size: 14px;
        color: #555;
    }

.token-pricing-info-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-box {
    flex: 1;
    background-color: #6c757d;
    color: white;
    padding: 25px;
    border-radius: 15px;
}

    .pricing-box h3 {
        margin-top: 0;
        font-weight: 700;
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
    }

.price-row, .price-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.price-total-row {
    border-top: 1px solid #fff;
    padding-top: 10px;
    font-weight: 700;
}

.vat-note {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 0;
}

.pricing-description {
    flex: 1;
    text-align: center;
}

    .pricing-description img {
        height: 70px;
        margin-bottom: 15px;
    }

    .pricing-description p {
        font-size: 15px;
        color: #555;
        margin: 0;
    }

.token-sharing-section {
    margin-top: 40px;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    max-width: 700px;
    margin: 30px auto 0 auto;
}

    .benefits-list li {
        padding-left: 40px;
        position: relative;
        font-size: 16px;
        margin-bottom: 15px;
    }

        .benefits-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 24px;
            color: #1431A4;
        }

/* --- REGISTER PAGE STYLES --- */
.registration-process .stage-section {
    margin-bottom: 60px;
}

.stage-title {
    text-align: center;
    color: #1431A4;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stage-subtitle {
    text-align: center;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
}

.stage-description {
    text-align: center;
    font-size: 16px;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

.stage-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.stage-steps {
    flex: 1.2;
}

.stage-details {
    flex: 1;
}

    .stage-details.centered {
        text-align: center;
    }

.step-list {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

    .step-list li {
        position: relative;
        padding-left: 45px;
        margin-bottom: 20px;
        font-size: 16px;
        min-height: 30px;
        display: flex;
        align-items: center;
    }

        .step-list li::before {
            counter-increment: step-counter;
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 30px;
            height: 30px;
            background-color: #6c757d;
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
        }

    .step-list.single-column {
        max-width: 600px;
        margin: 20px auto 0 auto;
    }

.stage-icon {
    max-height: 100px;
    margin-bottom: 25px;
}

.stage-button {
    background-color: #1431A4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.3s;
}

    .stage-button:hover {
        background-color: #0f257e;
    }

.document-group {
    margin-bottom: 30px;
}

.document-title {
    color: #1431A4;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.document-list {
    list-style: none;
    padding-left: 0;
}

    .document-list li {
        padding-left: 35px;
        position: relative;
        font-size: 16px;
        margin-bottom: 15px;
    }

        .document-list li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: -2px;
            font-size: 24px;
            color: #1431A4;
        }

/* --- FOOTER --- */
.main-footer {
    background-color: #fff;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: auto;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}

.footer-logo {
    /*max-height: 60px;*/
    max-height: 150px;
    width: auto;
}

.footer-bottom-bar {
    background-color: #1431A4;
    color: white;
    padding: 15px 20px;
}

    .footer-bottom-bar p {
        margin: 0;
        font-size: 14px;
        font-weight: 700;
    }
