.welcome-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.welcome-section .wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.welcome-section .column {
    width: 50%;
    box-sizing: border-box;
}
.welcome-section .column img {
    max-width: 100%;
    height: auto;
    display: block;
}
.welcome-section .column h4 {
    font-size: var(--font-size-body-l);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
    display: inline-block;
}
.welcome-section .column h4:after {
    content: '';
    width: 100%;
    height: 6px;
    background: #3d00de;
    display: block;
    position: relative;
    top: -5px;
    z-index: -1;
}
.welcome-section .column h1.hero-title {
    font-size: 5rem;
    line-height: 1;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.welcome-section .hero-description {
    font-size: var(--font-size-body-s);
    font-weight: var(--font-weight-regular);
    margin: 0;
    line-height: 0;
}

.welcome-section .welcome-features {
    list-style: none;
    font-weight: var(--font-weight-regular);
    padding-left: 0;
    margin: 0 0 2rem;
}

.welcome-section .welcome-feature-title {
    position: relative;
    gap: 0.5rem;
    align-items: center;
    display: flex;
    margin-bottom: 0.75rem;
    font-size: var(--font-size-body);
}

.welcome-section .welcome-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    background-color: var(--color-secondary);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

.welcome-section .price-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-block: 20px;
}

.welcome-section small {
    font-weight: var(--font-weight-thin);
    font-size: var(--font-size-body-2xs);
    width: 50%;
    opacity: 0.6;
}

.welcome-section h2 {
    color: var(--color-secondary);
    margin: 0;
}

.welcome-section .welcome-section-cta-wrapper {
    width: fit-content;
    animation: wobble 3s ease 3s infinite;
    animation-fill-mode: both;
}

.welcome-section .welcome-section-cta-wrapper:hover {
    animation-play-state: paused;
}

.section-faqs {
    background-color: var(--color-light-gray);
}
.section-faqs .wrapper {
    padding: 40px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.section-faqs .wrapper h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    line-height: 1;
}

.section-faqs .faq-item {
    border-radius: 10px;
    padding: 0;
    margin-bottom: 20px;
    background-color: var(--color-white);
    display: block;
    max-width: 100%;
}
.section-faqs .faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    font-weight: bold;
    border-radius: 10px;
    background: var(--color-white);
    transition: all 0.3s ease;
}

.section-faqs .faq-item .faq-question .toggle-icon {
    width: 20px;
    height: 20px;
    background-color: #3d00de;
    mask-image: var(--arrow-down-icon);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    flex-shrink: 0;
    transition: transform 0.3s;
}


.section-faqs .faq-item .faq-question:hover {
    color: #3d00de;
    padding: 20px 40px;
}

.faq-toggle:checked + .faq-question .toggle-icon {
    mask-image: var(--arrow-up-icon);
}

.faq-toggle:checked + .faq-question + .faq-answer {
    display: block;
}

.section-faqs .faq-item .faq-answer {
    border-top: 2px solid var(--color-light-gray);
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 0 0 10px 10px;
    display: none;
}
.section-faqs .faq-item .faq-answer p {
    line-height: 1.6;
    margin: 0;
}

.section-how-works {
    background-color: var(--color-white);
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
}
.section-how-works svg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    max-width: 80%;
}
.section-how-works .wrapper  {
    width: 1200px;
    max-width: 100%;
    box-sizing: border-box;
    margin: 120px auto;
    z-index: 2;
    position: relative;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}
.section-how-works .wrapper .steps .wp-block-group {
    width: calc((100% / 3) - 40px);
    position: relative;
    transition: .3s all ease;
}
.section-how-works .wrapper .steps .wp-block-group:hover {
    transform: scale(1.05);
}
.section-how-works .wrapper .steps .wp-block-group:hover:before {
    width: 45%;
}
.section-how-works .wrapper .steps .wp-block-group:before {
    content: '';
    display: block;
    width: 50%;
    height: auto;
    aspect-ratio: 1/1;
    background-color: var(--color-secondary);
    border-radius: 100%;
    position: absolute;
    top: -20%;
    left: 50%;
    z-index: -3;
    transition: .3s all ease;
    transform: translateX(-50%);
    animation-name: breathEffect;
    animation-duration: 5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}
.section-how-works .wrapper .steps .wp-block-media-text {
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    border: 1px solid var(--color-white);
    background-color: rgba(0, 0, 0, 0.02);
    box-shadow: 0 0 30px -10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}
.section-how-works .wrapper h2 {
    font-size: 3rem;
    margin: 0 ;
    text-align: center;
    line-height: 1;
}
.section-how-works .wrapper p {
    font-size: var(--font-size-body-s);
    margin: 0;
    text-align: center;
}
.section-how-works .wrapper .steps .wp-block-media-text img {
    height: 60px;
    width: auto;
    display: block;
}

.section-programs {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px;
}

.section-programs h2 {
    margin: 0 auto;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}
.section-programs  nav.taxonomy-nav {
    text-align: center;
}
.section-programs .wrapper {
    width: 1680px;
    max-width: 100%;
    margin: 0 auto;
}
span.program-label {
    background: var(--color-secondary);
    position: absolute;
    top: 20px;
    left: 0;
    font-size: var(--font-size-body-2xs);
    font-weight: var(--font-weight-semibold);
    font-style: italic;
    padding: 4px 15px;
    border-radius: 0 50px 50px 0;
}
.section-programs .wrapper img {
    display: block;
}

.section-programs .programs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.section-programs .single-program {
    background-color: var(--color-white);
    border-radius: 40px;
    overflow: hidden;
    color: var(--color-black);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.section-programs .single-program .single-program-up {
    background-color: #f0f0f0;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.section-programs .single-program .single-program-up img {
    height: auto;
    display: block;
    width: 140px;
    max-width: 100%;
    margin: 0 auto;
}

.section-programs .single-program .single-program-up h3 {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-body-l);
    margin: 0;
}

.section-programs .single-program .single-program-up h4 {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-sm);
    margin: 0;
}

.section-programs .single-program .single-program-up small {
    font-weight: var(--font-weight-thin);
    font-size: var(--font-size-body-2xs);
    margin-top: 10px;
}

.section-programs .single-program .single-program-down {
    background-color: var(--color-white);
    padding: 40px;
    font-size: var(--font-size-body-xs);
    font-weight: var(--font-weight-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.section-programs .single-program-down ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: var(--font-size-body-s);
    font-weight: var(--font-weight-light);
    flex-grow: 1;
}

.section-programs .single-program-down ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-body-xs);
    font-weight: var(--font-weight-light);
}

.section-programs .single-program-down ul li:before {
    flex-shrink: 0;
    content: '';
    width: 3px;
    height: 8px;
    display: block;
    border-width: 0px 2px 2px 0;
    border-color: #3d00de;
    border-style: solid;
    transform: rotate(45deg);
}

.section-programs .single-program-down button.c2a {
    width: 100%;
    margin-top: auto;
}

.section-programs ul.tab-buttons {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    list-style: none;
    padding: 0;
    background-color: rgba(0,0,0,0.4);
    margin: 40px auto;
    border-radius: 50px;
    border: none;
    flex-wrap: wrap;
}

.section-programs ul.tab-buttons li span {
    color: var(--color-white);
    font-weight: bold;
    box-sizing: border-box;
    padding: 14px 22px;
    display: block;
    text-decoration: none;
    opacity: 0.6;
    transition: .3s all ease;
    cursor: pointer;
}
.section-programs ul.tab-buttons li span:hover {
    opacity: 1;
}

.section-programs ul.tab-buttons li.active span {
    opacity: 1;
    background-color: var(--color-black);
    border-radius: 50px;
    text-shadow: 0px 0px 5px white;
    background-image: radial-gradient(#262626, var(--color-black));
}

.tabs {
    max-width: 600px;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-buttons button {
    flex: 1;
    padding: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-body);
    transition: background 0.3s;
}

.tab-buttons button.active {
    background: #007bff;
    color: var(--color-white);
    font-weight: bold;
}

.tab-content {
    display: none;
    padding: 0;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

.section-contact {
    text-align: center;
    padding: 40px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-contact .wrapper {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.section-contact .wrapper .acceptance-box {
    font-size: var(--font-size-body-xs);
    font-weight: var(--font-weight-light);
}

.section-contact .wrapper .acceptance-box a {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.section-contact .wrapper .acceptance-box a:hover {
    color: var(--color-black);
}

.section-contact .wrapper h2 {
    margin: 0 auto;
    font-size: 3rem;
    text-align: center;
    line-height: 1;
}

.section-contact .form-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 140px;
    padding: 5px;
    position: relative;
    margin: 40px 0;
}

.section-contact .form-wrapper .form-group:nth-child(1),
.section-contact .form-wrapper .form-group:nth-child(2) {
    width: 40%;
    gap: 0;
    margin: 0;
}
.section-contact .form-wrapper .form-group:nth-child(3) {
    width: 20%;
}
.section-contact .form-wrapper .form-group:first-child p span input {
    border-radius: 50px 0 0 50px;
    border-right: 1px solid #c2c2c2;
}
.section-contact .form-wrapper .form-group p {
    margin: 0;
    height: 100%;
}
.section-contact .form-wrapper .form-group p span {
    display: block;
}
.section-contact .form-wrapper .form-group p span input {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    border: none;
    box-sizing: border-box;
    display: block;
    transition: .3s all ease;
}
.section-contact .form-wrapper .form-group p span input:focus {
    background: var(--color-light-gray);
    box-shadow: 0 0 40px 0 rgba(61, 0, 222, 0.4);
    outline: 2px solid #8d64f6;
}

.section-contact .form-wrapper .form-group p span input::placeholder {
    font-size: var(--font-size-body);
    transition: .3s all ease;
}
.section-contact .form-wrapper .form-group p span input:focus::placeholder {
    font-size: var(--font-size-body-xs);
    opacity: 0.7;
}

.section-contact .form-wrapper .form-group .request-call {
    background: #3d00de;
    border: none;
    padding: 14px 28px;
    margin: 0;
    width: 100%;
    display: block;
    border-radius: 0 50px 50px 0;
    color: var(--color-white);
    height: 100%;
}

.section-contact .form-wrapper .form-group span.wpcf7-spinner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
    opacity: 1;
}

.section-contact .form-wrapper .form-group span.wpcf7-not-valid-tip {
    position: absolute;
}


.offers-students {
    background-color: #f0f0f0;
    text-align: center;
    padding: 40px 0;
}
.offers-students .wrapper {
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.offers-students .wrapper h2 {
    font-size: 3rem;

}

.offers-students .wrapper .content {
    width: 680px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    line-height: 1.6;
    font-weight: var(--font-weight-light);
    padding: 40px;
}

.offers-students  .marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.offers-students .marquee-content {
    display: flex;
    width: fit-content;
    animation: marquee 60s linear infinite;
    transform: translateX(-50%);
}

.offers-students  .marquee img {
    flex-shrink: 0;
    width: auto;
    margin-right: 2rem; /* απόσταση μεταξύ των εικόνων */
}