.radio-group {
    margin: 15px 0;
    font-family: 'Segoe UI', sans-serif;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
    position: relative;
    padding-left: 30px;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #4a90e2;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.radio-option:hover .radio-custom {
    background-color: #f0f7ff;
}

.radio-option input:checked~.radio-custom {
    background-color: #ffffff;
    border-color: #0165b3;
}

.radio-custom:after {
    content: "";
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0165b3;
}

.radio-option input:checked~.radio-custom:after {
    display: block;
}

.radio-label {
    margin-left: 10px;
    color: #000000;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.radio-option:hover .radio-label {
    color: #4a90e2;
}

.my-program {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.my-program h2 {
    font-size: 3rem;
    line-height: 1.0416666667;
    color: #0b0c0c;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
}

.my-program-description {
    max-width: 888px;
    margin: auto;
    color: #515058;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.my-program .btn-box {
    margin: 0px 0px 40px;
}

#my-program-steps ul {
    max-width: 374px;
}

#my-program-steps .error-message {
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.31579;
    display: block;
    margin-top: 0px;
    margin-bottom: 15px;
    clear: both;
    color: rgb(212, 53, 28);
}

.my-program-header {
    max-width: 991px;
    margin: 0 auto;
    padding: 64px;
    text-align: center;
}

.my-program-header.find-your-program {
    padding-bottom: 0;
}

.my-program-header h1 {
    font-size: 32px;
    line-height: 1.0416666667;
    color: #002E69;
    font-weight: 600;
    padding-bottom: 20px;
}

.my-program-header p {
    font-size: 16px;
    color: #515058;
    font-weight: 400;
    padding: 0;
}

.steps-container {
    margin-bottom: 2rem;
    padding: 0 10px 40px;
}

.steps-container .fieldset-legend {
    font-size: 24px;
    color: #24282F;
    font-weight: 600;
    margin: 0 0 48px 0;
}

.steps-container small {
    font-size: 14px;
    font-weight: 400;
    color: #5A5A5A;
}

.results-container {
    max-width: 991px;
    margin: 2rem auto;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.results-title {
    color: #005ea5;
    border-bottom: 2px solid #005ea5;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.results-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.results-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
}

.results-item.no-border {
    border-bottom: none;
}

.results-label {
    flex: 0 0 330px;
    font-weight: 600;
    color: #495057;
}

.results-value {
    color: #212529;
}

.restart-button {
    display: inline-block;
    padding: 12px 24px;
    background: #005ea5;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.restart-button:hover {
    background: #004b8a;
    color: white !important;
}

.answers-summary {
    margin: 0 auto;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    max-height: 650px;
    max-width: 472px;
}

.answers-summary .no-answers {
    font-size: 16px;
    color: #000000;
}

.answers-summary h2 {
    color: #003476;
    margin-bottom: 48px;
    padding-bottom: 22px;
    border-bottom: 2px solid #f0f0f0;
    font-size: 24px;
    font-weight: 600;
}

.answers-summary ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* .answer-content .answer-given {
    padding: 24px 0 0 0;
} */

.answers-summary .answer-text {
    padding: 0 1rem;
}

.answer-content {
    flex: 1;
}

.answers-summary .answer-content {
    padding: 24px 0 0 0;
}

.answer-label {
    display: block;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
    font-size: 16px;
}

.answer-value {
    color: #212529;
    font-size: 14px;
}

.answer-link {
    color: #005ea5;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.answer-link svg {
    width: 25px;
    height: 25px;
}

.greece-map {
    height: auto;
    position: relative;
    display: flex;
    display: none;
}

svg#map {
    overflow: hidden;
    width: 70%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

svg#map #map-group {
    contain: content;
}

svg#map path {
    fill: #c0c0c0;
    stroke: #fff;
    stroke-width: 1;
    cursor: pointer;
    transition: fill 0.2s;
}

svg#map path:hover {
    fill: #003375;
}

.land {
    fill: #CCCCCC;
    fill-opacity: 1;
    stroke: white;
    stroke-opacity: 1;
    stroke-width: 0.5;
}


.tooltip-container {
    position: relative;
    display: inline-block;
}

.tooltip-box {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.tooltip-container:hover .tooltip-box {
    display: block;
}

.tooltip {
    position: absolute;
    background-color: #0165b3;
    padding: 5px 10px;
    border: 1px solid #ccc;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 200px;
    height: 70px;
    opacity: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    right: 25%;
    top: 20%;
}

.age-dropdown,
.dimoi-dropdown {
    position: relative;
    max-width: 300px;
    margin-bottom: 24px;
}

.age-dropdown select,
.dimoi-dropdown select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 460px;
    font-size: 14px;
    font-weight: 400;
    height: 60px;
}

.age-dropdown label,
.dimoi-dropdown label {
    font-weight: bold;
}

.age-select,
.dimoi-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px 40px 10px 12px;
    font-size: 16px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}

.age-dropdown::after,
.dimoi-dropdown::after {
    position: absolute;
    bottom: 18px;
    margin-top: -10px;
    line-height: 20px;
    right: 20px;
    color: #2F2D51;
    content: "\f17c";
    font-family: 'Flaticon';
    font-size: 10px;
}

.step-choice-info {
    margin-top: 24px;
}

.progress-bar-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 911px;
    padding: 80px 30px;
}

.progress-bar-bg {
    position: absolute;
    top: 50%;
    left: 40px;
    right: 40px;
    height: 1px;
    background-color: #ccc;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #3498db;
    /* Or your theme color */
    transition: width 0.3s ease-in-out;
    z-index: 2;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.programs-step-pagination {
    padding-top: 48px;
}

.programs-step-pagination .btn-box.text-center {
    margin-top: 0;
}

.programs-step-pagination .btn-style-one {
    padding: 14px 32px;
}

.programs-step-pagination li {
    margin-right: 24px;
}

.progress-steps .step {
    position: relative;
    background: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #999;
    transition: all 0.3s ease;
}

.progress-steps .step.completed {
    border-color: #0164B2;
    background-color: #0164B2;
    color: #fff;
}

.progress-steps .step.active {
    border-color: #0164B2;
    background-color: #fff;
    color: #0164B2;
    border-width: medium;
}

.my-programs h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.my-programs p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    margin: 20px 0;
}

.my-programs span {
    font-size: 48px;
    font-weight: 700;
}

.my-programs span.euro {
    font-size: 32px;
    font-weight: 700;
}

.my-answers h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .steps-container {
        flex-direction: column;
    }

    .answers-summary {
        margin: 32px 0;
    }

    .my-programs {
        flex-direction: column;
    }

    .my-programs .content-column {
        display: none;
    }

    .my-program-results .filters-column {
        position: inherit;
        z-index: auto;
        background: #F0F5F7;
        height: auto;
        width: 100%;
        max-width: 100%;
        overflow: auto;
    }

    .my-program-results .filters-column {
        margin-top: 30px;
    }

    .program-results-content {
        flex-direction: column-reverse;
    }
}

@media (max-width: 767px) {
    .results-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .results-label {
        flex: none;
    }

    .my-program-header {
        padding: 32px 10px;
    }
}