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

html{
    scroll-behavior: smooth;
}
body {
    font-family: Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover,
a:focus,
button:hover,
button:focus {
    opacity: 0.6;
}

a.hover,
a.focus,
button.hover,
button.focus {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

/* Main container */
.home {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

/* Hero section */
.hero-container {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 713px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero-container {
        max-width: 100%;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* Navigation */
.navigation {
    background: #ffffff70;
    position: fixed;
    width: 100%;
    border-color: rgba(0, 0, 0, 0.1);
    border-bottom-width: 1px;
    display: flex;
    width: 100%;
    padding: 24px 80px;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    color: rgba(0, 0, 0, 1);
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 10;
}

@media (max-width: 991px) {
    .navigation {
        gap: 10px;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.logo {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: flex-end;
    gap: -2px;
    line-height: 0.8;
    justify-content: flex-start;
}

.logo a {
    display: flex;
    align-items: flex-end;
    gap: -2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.72px;
}

.logo-mark {
    border-radius: 29px;
    border-color: rgba(0, 0, 0, 1);
    min-height: 4px;
    padding: 1px;
    font-size: 4px;
    font-weight: 400;
    white-space: nowrap;
    letter-spacing: 0.12px;
    width: 4px;
}

@media (max-width: 991px) {
    .logo-mark {
        white-space: initial;
    }
}

.nav-links {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .nav-links {
        gap: 10px;
        max-width: 100%;
    }
}

.nav-link {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

/* Hero content */
.hero-content {
    position: relative;
    display: flex;
    width: 100%;
    padding: 64px 80px;
    padding-top: 150px;
    align-items: center;
    gap: 40px 48px;
    overflow: hidden;
    justify-content: flex-start;
    flex-wrap: wrap;
    z-index: 5;
}

@media (max-width: 991px) {
    .hero-content {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.hero-text-container {
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 64px;
}

.hero-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    color: rgba(0, 0, 0, 1);
    justify-content: center;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
}

.cta-button {
    border-radius: 40px;
    background-color: rgba(0, 0, 0, 1);
    align-self: flex-start;
    margin-top: 48px;
    padding: 20px 40px;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-align: right;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 991px) {
    .cta-button {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
    }
}

/* Registration form */
.registration-form {
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 2px 98px rgba(0, 0, 0, 0.1);
    align-self: stretch;
    display: flex;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    padding: 32px;
    flex-direction: column;
    align-items: stretch;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
    justify-content: flex-start;
    width: 600px;
}

@media (max-width: 991px) {
    .registration-form {
        max-width: 100%;
        padding: 20px;
        white-space: initial;
    }
}

.form-field {
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .form-field {
        max-width: 100%;
        white-space: initial;
    }
}

.input-field {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
    display: flex;
    min-height: 44px;
    margin-top: 8px;
    width: 100%;
    padding: 10px;
    gap: 8px;
}

@media (max-width: 991px) {
    .input-field {
        max-width: 100%;
    }
}

.phone-input {
    align-items: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
    display: flex;
    margin-top: 8px;
    width: 100%;
    padding: 10px 12px;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .phone-input {
        max-width: 100%;
        white-space: initial;
    }
}

.country-flag {
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    width: 18px;
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
    flex-shrink: 0;
}

.country-code {
    font-weight: 600;
}

.phone-field {
    border: none;
    box-shadow: none;
    flex: 1;
    min-height: auto;
    margin-top: 0;
    padding: 0;
}

.textarea-field {
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px 0px rgba(18, 26, 43, 0.05);
    display: flex;
    min-height: 88px;
    margin-top: 8px;
    width: 100%;
    padding: 10px;
    gap: 8px;
}

@media (max-width: 991px) {
    .textarea-field {
        max-width: 100%;
    }
}

.submit-button {
    border-radius: 40px;
    background-color: rgba(0, 0, 0, 1);
    border: none;
    align-self: flex-end;
    margin-top: 20px;
    padding: 20px 40px;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-align: right;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 991px) {
    .submit-button {
        padding-left: 20px;
        padding-right: 20px;
        white-space: initial;
    }
}

/* Courses section */
.courses-section {
    margin-top: 120px;
    width: 100%;
    color: rgba(0, 0, 0, 1);
}

@media (max-width: 991px) {
    .courses-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.section-container {
    display: flex;
    flex-direction: column;
    position: relative;
    flex-shrink: 0;
    box-sizing: border-box;
    max-width: 1200px;
    padding: 0 80px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .section-container {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.section-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    font-size: 16px;
    font-weight: 400;
    justify-content: center;
}

@media (max-width: 991px) {
    .section-header {
        max-width: 100%;
    }
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

@media (max-width: 991px) {
    .section-title {
        max-width: 100%;
    }
}

.section-subtitle {
    line-height: 1.1;
    margin-top: 12px;
}

@media (max-width: 991px) {
    .section-subtitle {
        max-width: 100%;
    }
}

.section-description {
    line-height: 18px;
    margin-top: 12px;
}

@media (max-width: 991px) {
    .section-description {
        max-width: 100%;
    }
}

.courses-grid {
    margin-top: 40px;
    width: 100%;
}

@media (max-width: 991px) {
    .courses-grid {
        max-width: 100%;
    }
}

.course-card {
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    display: flex;
    width: 100%;
    padding: 24px;
    align-items: center;
    gap: 40px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .course-card {
        max-width: 100%;
        padding: 20px;
    }
}

.course-image {
    aspect-ratio: 1.82;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 40px;
    align-self: stretch;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

@media (max-width: 991px) {
    .course-image {
        max-width: 100%;
    }
}

.course-content {
    align-self: stretch;
    min-width: 240px;
    margin-top: auto;
    margin-bottom: auto;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
}

@media (max-width: 991px) {
    .course-content {
        max-width: 100%;
    }
}

.course-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .course-title {
        max-width: 100%;
    }
}

.course-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
}

@media (max-width: 991px) {
    .course-description {
        max-width: 100%;
    }
}

/* Formats section */
.formats-section {
    margin-top: 120px;
    width: 100%;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

@media (max-width: 991px) {
    .formats-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.formats-grid {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .formats-grid {
        max-width: 100%;
    }
}

.format-card {
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    min-width: 240px;
    padding: 24px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .format-card {
        padding: 20px;
    }
}

.format-image {
    aspect-ratio: 1.14;
    object-fit: contain;
    object-position: center;
    width: 194px;
    border-radius: 40px;
}

.format-content {
    margin-top: 40px;
    width: 100%;
    text-align: left;
}

.format-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
}

.format-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
}

/* Education section */
.education-section {
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    margin-top: 120px;
    width: 100%;
    padding: 24px;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    line-height: 18px;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .education-section {
        max-width: 100%;
        padding: 20px;
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .education-section {
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
    }
}

.education-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.education-text {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 991px) {
    .education-text {
        max-width: 100%;
    }
}

.education-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .education-title {
        max-width: 100%;
    }
}

.education-description {
    margin-top: 12px;
}

@media (max-width: 991px) {
    .education-description {
        max-width: 100%;
    }
}

.education-image {
    aspect-ratio: 1.92;
    object-fit: contain;
    object-position: center;
    width: 500px;
    border-radius: 40px;
    margin-top: 40px;
    max-width: 100%;
    align-self: center;
}

/* Documentation section */
.documentation-section {
    margin-top: 120px;
    width: 100%;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

@media (max-width: 991px) {
    .documentation-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.documentation-grid {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .documentation-grid {
        max-width: 100%;
    }
}

.documentation-card {
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    min-width: 240px;
    padding: 24px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 991px) {
    .documentation-card {
        padding: 20px;
    }
}

.documentation-image {
    aspect-ratio: 1.66;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 40px;
}

.documentation-content {
    display: flex;
    margin-top: 40px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
}

.documentation-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
}

.documentation-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
}

/* Plans section */
.plans-section {
    margin-top: 120px;
    width: 100%;
}

@media (max-width: 991px) {
    .plans-section {
        max-width: 100%;
        margin-top: 40px;
    }
}

.plans-grid {
    display: flex;
    margin-top: 40px;
    width: 100%;
    align-items: stretch;
    gap: 24px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .plans-grid {
        max-width: 100%;
    }
}

.plan-card {
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.04);
    min-width: 240px;
    padding: 24px;
    flex: 1;
    flex-shrink: 1;
    flex-basis: 0%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .plan-card {
        padding: 20px;
    }
}

.plan-image {
    aspect-ratio: 1.08;
    object-fit: contain;
    object-position: center;
    width: 100%;
    border-radius: 40px;
}

.plan-content {
    margin-top: 40px;
    width: 100%;
    color: rgba(0, 0, 0, 1);
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 29px;
}

.plan-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
}

.plan-button {
    border-radius: 40px;
    background-color: rgba(0, 0, 0, 1);
    margin-top: 40px;
    width: 100%;
    padding: 20px 40px;
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-align: center;
    line-height: 1;
    display: block;
    cursor: pointer;
}

@media (max-width: 991px) {
    .plan-button {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 40px;
    }
}

/* Contact info */
.contact-info {
    color: rgba(0, 0, 0, 1);
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    text-align: center;
    margin-top: 120px;
    font-style: normal;
}

@media (max-width: 991px) {
    .contact-info {
        max-width: 100%;
        margin-top: 40px;
    }
}

.contact-link {
    margin-top: 15px;
    display: block;
    margin-left: 5px;
    color: rgba(0, 0, 0, 1);
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 1);
    align-self: center;
    display: flex;
    margin-top: 120px;
    width: 100%;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .footer {
        max-width: 100%;
        margin-top: 40px;
    }
}

.footer-logo .logo-text,
.footer-logo .logo-mark {
    color: rgba(255, 255, 255, 1);
}

.footer-logo .logo-mark {
    border-color: rgba(255, 255, 255, 1);
}

.footer-links {
    background-color: rgba(255, 255, 255, 1);
    display: flex;
    margin-top: 32px;
    width: 100%;
    padding: 12px 80px;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    font-weight: 600;

    letter-spacing: 1px;
    line-height: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

@media (max-width: 991px) {
    .footer-links {
        gap: 10px;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.footer-link {
    align-self: stretch;
    margin-top: auto;
    margin-bottom: auto;
}

.copyright {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    margin-top: 32px;
}

.cookie{font-family:
        Nunito,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    margin: 5px;
    color: #000;
    text-align: center;
    display: none;
}
.cookie.show{
    display: block;
}
.cookie-block{

    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    border-radius: 24px;
    background: #fff;
}
@media (max-width:991px){
    .cookie-block {
        flex-direction: column;
    }
}

.cookie-heading{
        font-family: inherit;
    font-weight: 700;
        font-size: 24px;
        line-height: 1.2;

}
.cookie-buttons{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.cookie-button{
    border-radius: 40px;
        padding: 20px 40px;
        background: #000;
    width: 100%;
    cursor: pointer;
    font-weight: 700;
        font-size: 20px;
        line-height: 1;
        text-align: center;
        color: #fff;
}

.privacy-section{
    max-width: 1200px;
    padding: 150px 20px;
    margin: auto;
}
.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.privacy-section h1{
    font-weight: 600;
        font-size: 40px;
        line-height: 1.1;
}
.privacy-section ul{
    padding-left: 20px;
}

.thx-section{
  
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}
.thx-content{
   
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: auto;
    max-width: 600px;    
    text-align: center;
    min-height: 75vh;
}