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

body {
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}

.hero-section {
    position: relative;
    background: url('images/a06acaa4a7898addba718466c872339e03a9d976.png') black 50% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 94px 24px 40px;
    overflow: hidden;
}

.hero-bg-desktop {
    display: none;
}

.glow-light {
    display: none;
}

.woman-image {
    display: none;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.content-top {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-top: -60px;
}

.main-title {
    font-family: 'Brygada 1918', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 124%;
    text-transform: uppercase;
    text-shadow: 0 2.943px 11.773px rgba(0, 0, 0, 0.70);
}

.title-white {
    color: #fff;
    display: block;
    font-size: 20px;
}

.title-gold {
    color: #F7D7B7;
    display: block;
}

.problems-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-card {
    display: flex;
    align-items: center;
    gap: 10.754px;
    padding: 10.754px 16.13px;
    border-radius: 7.527px;
    border: 1.075px solid #fff;
    background: rgba(0, 0, 0, 0.50);
    width: fit-content;
}

.problem-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.problem-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 102%;
    color: #fff;
}

.content-bottom {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefits-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.benefits-title {
    font-family: 'Brygada 1918', serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    color: #F7D7B7;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.benefits-list {
    list-style: disc;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    line-height: 185%;
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding-left: 20px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: -24px;
    position: relative;
}

.cta-button {
    display: flex;
    padding: 10.718px 56.655px;
    justify-content: center;
    align-items: center;
    border-radius: 38.28px;
    background: linear-gradient(90deg, #D1A87F 0%, #FFF 50%, #D1A87F 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.60);
    border: none;
    cursor: pointer;
    font-family: 'Brygada 1918', serif;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    line-height: 140%;
    text-transform: uppercase;
    color: #000;
    width: 100%;
    min-height: 42.437px;
    z-index: 2;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.cta-button:hover {
    background: #D1A87F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.70);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.60);
}

.ticket-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    height: 100px;
    margin-top: -24px;
    width: 100%;
}

.ticket-shape {
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;
}

.ticket-desktop {
    display: none;
}

.ticket-text {
    position: relative;
    z-index: 1;
    max-width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    text-transform: lowercase;
    text-align: center;
    color: #fff;
    padding: 0 30px;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 120px 40px 60px;
    }

    .content-wrapper {
        gap: 64px;
    }

    .content-top {
        gap: 64px;
    }

    .main-title, .title-white {
        font-size: 28px;
    }

    .problems-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .problem-card {
        padding: 14px 20px;
    }

    .problem-text {
        font-size: 14px;
    }

    .problem-icon {
        width: 28px;
        height: 28px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .benefits-list {
        font-size: 12px;
    }

    .cta-button {
        font-size: 18px;
        padding: 14px 60px;
        max-width: 500px;
        margin: 0 auto;
    }

    .ticket-text {
        font-size: 12px;
        max-width: 250px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        background: none;
        padding: 150px 60px 0;
        align-items: flex-start;
    }

    .hero-bg-desktop {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('images/bba6c2c24e30c6fb0f46aad616214c089d407b69.png') 50% / cover no-repeat;
        z-index: 0;
    }

    .glow-light {
        display: block;
        position: absolute;
        top: 174px;
        right: calc(50% - 660px);
        width: 693px;
        height: 618px;
        border-radius: 50%;
        background: #F7D7B7;
        filter: blur(194.4px);
        z-index: 0;
        pointer-events: none;
    }

    .woman-image {
        display: block;
        position: absolute;
        right: calc(50% - 720px);
        top: -55px;
        width: 494px;
        height: 837px;
        object-fit: cover;
        z-index: 0;
    }

    .container {
        max-width: 1280px;
    }

    .content-wrapper {
        max-width: 870px;
        gap: 52px;
    }

    .content-top {
        gap: 56px;
    }

    .main-title, .title-white {
        font-size: 53px;
    }

    .problems-grid {
        gap: 32px;
        max-width: 683px;
    }

    .problem-card {
        padding: 10.754px 16.13px;
        justify-content: center;
    }

    .problem-text {
        font-size: 16px;
    }

    .problem-icon {
        width: 40px;
        height: 39px;
    }

    .benefits-section {
        display: none;
    }

    .cta-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: -40px;
    }

    .cta-button {
        font-size: 16px;
        padding: 10.718px 56.655px;
        max-width: 358px;
        margin: 0;
        height: 72px;
        min-height: auto;
    }

    .ticket-container {
        width: 339px;
        height: 72px;
        margin-top: 0;
        padding-bottom: 0;
        align-items: center;
        left: -40px;
    }

    .ticket-mobile {
        display: none;
    }

    .ticket-desktop {
        display: block;
        width: 100%;
        height: 72px;
        max-width: 339px;
        transform: none;
        position: absolute;
        left: 0;
    }

    .ticket-text {
        font-size: 10px;
        max-width: 210px;
    }
}

@media (min-width: 1280px) {
    .glow-light {
        right: calc(50% - 720px);
    }

    .woman-image {
        right: calc(50% - 780px);
    }
}

@media (min-width: 1440px) {
    .hero-section {
        padding: 150px 130px 0;
        max-width: 1280px;
        margin: 0 auto;
        padding-bottom: 160px;
    }

    .benefits-desktop-section {
        max-width: 1280px;
        margin: 0 auto;
    }

    .registration-section {
        max-width: 1280px;
        margin: 0 auto;
    }

    .glow-light {
        right: -280px;
    }

    .woman-image {
        right: 1px;
    }

    .main-title, .title-white {
        font-size: 53px;
    }
}

/* About Section (Section 2) */
.about-section {
    position: relative;
    background: url('images/81dee231eca94556cd1d26157d38b7a36832c9af.png') black 50% / cover no-repeat;
    padding: 80px 24px 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.about-top {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 319px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.image-border {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 84px;
    border: 2px solid #F7D7B7;
    overflow: visible;
}

.about-woman-image {
    position: absolute;
    right: 0;
    top: -97px;
    width: 311px;
    height: 412px;
    object-fit: cover;
    border-radius: 84px;
}

.about-woman-desktop {
    display: none;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.about-headline {
    font-family: 'Brygada 1918', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    text-shadow: 0 2.339px 9.356px rgba(0, 0, 0, 0.70);
}

.headline-white {
    color: #fff;
}

.headline-gold {
    color: #F7D7B7;
}

.about-description {
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
}

.webinar-content {
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.webinar-title {
    font-family: 'Brygada 1918', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    color: #F7D7B7;
    text-align: center;
}

.webinar-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.webinar-card {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 8.31px;
    border: 1.187px solid #fff;
    background: rgba(0, 0, 0, 0.50);
}

.webinar-card-text {
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

.webinar-footer-text {
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

.webinar-cta-button {
    display: flex;
    width: 288px;
    max-width: 100%;
    padding: 10.718px 56.655px;
    justify-content: center;
    align-items: center;
    border-radius: 38.28px;
    background: linear-gradient(90deg, #D1A87F 0%, #FFF 50%, #D1A87F 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    font-family: 'Brygada 1918', serif;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    line-height: 140%;
    text-transform: uppercase;
    color: #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.webinar-cta-button:hover {
    background: #D1A87F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.35);
}

.webinar-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
}

/* Tablet styles for about section */
@media (min-width: 768px) {
    .about-section {
        padding: 100px 40px 110px;
    }

    .about-container {
        gap: 64px;
    }

    .about-top {
        gap: 40px;
    }

    .about-image-wrapper {
        height: 380px;
    }

    .image-border {
        border-radius: 100px;
    }

    .about-woman-image {
        width: 370px;
        height: 490px;
        top: -110px;
        border-radius: 100px;
    }

    .about-headline {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }

    .webinar-title {
        font-size: 24px;
    }

    .webinar-cards {
        gap: 20px;
        max-width: 600px;
    }

    .webinar-card {
        padding: 16px;
    }

    .webinar-card-text {
        font-size: 14px;
    }

    .webinar-footer-text {
        font-size: 14px;
        max-width: 600px;
    }

    .webinar-cta-button {
        width: 320px;
        font-size: 16px;
    }
}

/* Desktop styles for about section */
@media (min-width: 1024px) {
    .about-section {
        padding: 120px 0px 140px;
    }

    .about-container {
        gap: 80px;
    }

    .about-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .about-image-wrapper {
        width: 450px;
        flex-shrink: 0;
        height: 420px;
    }

    .image-border {
        border-radius: 120px;
    }

    .about-woman-image {
        width: 420px;
        height: 550px;
        top: -130px;
        border-radius: 120px;
    }

    .about-text-content {
        flex: 1;
        gap: 24px;
        padding-top: 20px;
    }

    .about-headline {
        font-size: 28px;
    }

    .about-description {
        font-size: 16px;
        max-width: 500px;
    }

    .webinar-title {
        font-size: 28px;
    }

    .webinar-cards {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 100%;
    }

    .webinar-card {
        width: 80%;
        margin: 0 auto;
        padding: 20px;
    }

    .webinar-card-text {
        font-size: 15px;
    }

    .webinar-footer-text {
        font-size: 16px;
        max-width: 800px;
    }

    .webinar-cta-button {
        width: 360px;
        font-size: 18px;
        padding: 14px 60px;
    }
}

@media (min-width: 1280px) {
    .about-image-wrapper {
        width: 500px;
        height: 450px;
    }

    .about-woman-image {
        width: 470px;
        height: 600px;
        top: -150px;
    }

    .about-headline {
        font-size: 32px;
    }

    .about-description {
        font-size: 18px;
        max-width: 600px;
    }

    .webinar-title {
        font-size: 32px;
    }
}

/* Benefits Desktop Section (Desktop Only) */
.benefits-desktop-section {
    display: none;
}

@media (min-width: 1024px) {
    .benefits-desktop-section {
        display: flex;
        position: relative;
        padding: 70px 130px;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }

    .benefits-desktop-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: url('images/13ec271e6358463c897aa73c560b2835.png') 50% top / cover no-repeat;
        z-index: -2;
        pointer-events: none;
    }

    .benefits-desktop-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300%;
        background: url('images/c4f000e58df9412fbcda366550468654.png') 50% bottom / cover no-repeat;
        z-index: -1;
        pointer-events: none;
    }

    .benefits-decor-left {
        position: absolute;
        left: -220px;
        top: -192px;
        width: 531px;
        height: 865px;
        pointer-events: none;
    }

    .decor-card-left {
        position: absolute;
        left: 22px;
        top: 173px;
        width: 341px;
        height: 607px;
        transform: rotate(17.634deg);
        border-radius: 20px;
        object-fit: cover;
    }

    .blur-glow-left {
        position: absolute;
        left: 0;
        top: 0;
        width: 370px;
        height: 865px;
        filter: blur(194.4px);
    }

    .benefits-decor-right {
        position: absolute;
        right: -721px;
        bottom: -887px;
        width: 1294px;
        height: 1577px;
        pointer-events: none;
    }

    .decor-card-right {
        position: absolute;
        left: 0;
        top: 0;
        width: 478px;
        height: 851px;
        transform: rotate(-21.741deg);
        border-radius: 38px;
        object-fit: cover;
    }

    .blur-glow-right {
        position: absolute;
        left: 283px;
        top: 243px;
        width: 1011px;
        height: 1334px;
        filter: blur(194.4px);
    }

    .benefits-desktop-container {
        display: flex;
        max-width: 1280px;
        flex-direction: column;
        align-items: center;
        gap: 56px;
        position: relative;
        z-index: 1;
    }

    .benefits-desktop-title {
        font-family: 'Brygada 1918', serif;
        font-size: 37px;
        font-weight: 700;
        line-height: 140%;
        text-transform: uppercase;
        color: #F7D7B7;
        text-shadow: 0 8px 8px rgba(0, 0, 0, 0.25);
        text-align: center;
    }

    .benefits-cards-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 786px;
        max-width: 100%;
    }

    .benefits-row {
        display: flex;
        align-items: center;
        gap: 40px;
        width: 100%;
    }

    .benefit-card-desktop {
        display: flex;
        flex: 1;
        padding: 16px 40px;
        justify-content: center;
        align-items: center;
        border-radius: 24px;
        border: 1px solid #fff;
        background: transparent;
    }

    .benefit-card-center {
        width: 370px;
    }

    .benefit-card-text {
        font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
        font-size: 19px;
        font-weight: 400;
        line-height: 185%;
        text-transform: uppercase;
        color: #fff;
        text-align: center;
        text-shadow: 0 7.684px 7.684px rgba(0, 0, 0, 0.25);
    }

    /* Hide mobile benefits in hero section on desktop */
    .benefits-section {
        display: none;
    }
}

/* About Section Desktop Updates */
@media (min-width: 1024px) {
    .about-section {
        background: none;
        position: relative;
        overflow: visible;
        max-width: 1280px;
        margin: 0 auto;
    }

    .about-top {
        flex-direction: row;
        align-items: flex-start;
        gap: 56px;
    }
    
    .about-top::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: url('images/13ec271e6358463c897aa73c560b2835.png') 50% top / cover no-repeat;
        z-index: -2;
        pointer-events: none;
    }

    .about-image-wrapper {
        width: auto;
        flex: 1;
        height: 574px;
        border-radius: 0 84px 84px 8px;
        border: 2px solid #F7D7B7;
        border-left: none;
        position: relative;
    }

    .image-border {
        border: none;
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .about-woman-mobile {
        display: none;
    }

    .about-woman-desktop {
        display: block;
        position: absolute;
        left: -18px;
        top: -256px;
        width: 624px;
        height: 826px;
        border-radius: 84px;
    }

    .about-text-content {
        flex: 1;
        max-width: 678px;
        gap: 100px;
        padding-top: 0px;
    }

    .about-headline {
        font-size: 42px;
    }

    .about-description {
        font-size: 24px;
        max-width: 100%;
    }
}

/* Webinar Section Desktop Updates */
@media (min-width: 1024px) {
    .webinar-content {
        max-width: 1280px;
        margin: 0 auto;
        text-align: center;
        gap: 52px;
    }

    .webinar-title {
        font-size: 37px;
    }

    .webinar-cards {
        width: 100%;
        gap: 40px;
    }

    .webinar-card {
        padding: 12px;
        border-radius: 8.31px;
    }

    .webinar-card-text {
        font-size: 24px;
    }

    .webinar-footer-text {
        font-size: 15px;
        max-width: 675px;
    }

    .webinar-cta-button {
        display: none;
    }
}

/* Registration Section (Section 3) */
.registration-section {
    position: relative;
    background: url('images/a06acaa4a7898addba718466c872339e03a9d975.png') black 50% / cover no-repeat;
    padding: 110px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.registration-bg-desktop {
    display: none;
}

.registration-woman-desktop {
    display: none;
}

.registration-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 52px;
}

.registration-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.registration-heading {
    display: flex;
    flex-direction: column;
}

.registration-title-white {
    font-family: 'Brygada 1918', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2.911px 11.643px rgba(0, 0, 0, 0.70);
    margin: 0;
}

.registration-title-gold {
    font-family: 'Brygada 1918', serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 140%;
    text-transform: uppercase;
    color: #F7D7B7;
    text-shadow: 0 2.911px 11.643px rgba(0, 0, 0, 0.70);
    margin: 0;
}

.registration-subtitle {
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    max-width: 261px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    height: 48px;
    padding: 14.496px 24px;
    align-items: center;
    gap: 14.496px;
    border-radius: 10px;
    border: 1px solid #fff;
    background: rgba(0, 0, 0, 0.50);
    cursor: text;
}

.form-phone {
    gap: 8px;
}

.phone-flag-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.flag-icon {
    width: 20px;
    height: 17px;
    border-radius: 2px;
}

.dropdown-arrow {
    width: 8.773px;
    height: 5.849px;
}

.form-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 102%;
    color: #fff;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.30);
}

.phone-input {
    flex: 1;
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.phone-input::placeholder {
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 0.5px;
}

.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.registration-button {
    display: flex;
    width: 100%;
    height: 42.437px;
    padding: 10.718px 56.655px;
    justify-content: center;
    align-items: center;
    border-radius: 38.28px;
    background: linear-gradient(90deg, #D1A87F 0%, #FFF 50%, #D1A87F 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.60);
    border: none;
    cursor: pointer;
    font-family: 'Brygada 1918', serif;
    font-size: 17px;
    font-weight: 700;
    font-style: italic;
    line-height: 140%;
    text-transform: uppercase;
    color: #000;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

.registration-button:hover {
    background: #D1A87F;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.70);
}

.registration-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.60);
}

.privacy-text {
    font-family: 'Avenir', -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    color: #fff;
    text-align: center;
}

/* Tablet styles for registration section */
@media (min-width: 768px) {
    .registration-section {
        padding: 120px 40px;
    }

    .registration-container {
        gap: 64px;
    }

    .registration-header {
        gap: 20px;
    }

    .registration-title-white,
    .registration-title-gold {
        font-size: 24px;
    }

    .registration-subtitle {
        font-size: 14px;
        max-width: 400px;
    }

    .form-fields {
        gap: 20px;
    }

    .form-field {
        height: 56px;
        padding: 16px 28px;
    }

    .form-input {
        font-size: 14px;
    }

    .registration-button {
        font-size: 16px;
        max-width: 400px;
    }

    .privacy-text {
        font-size: 14px;
        max-width: 500px;
    }
}

/* Desktop styles for registration section */
@media (min-width: 1024px) {
    .registration-section {
        padding: 110px 140px;
        background: none;
        height: 900px;
        align-items: flex-start;
    }

    .registration-bg-desktop {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 90%;
        object-fit: cover;
        z-index: 0;
    }

    .registration-woman-desktop {
        display: block;
        position: absolute;
        right: 0;
        top: 50px;
        width: 680px;
        height: 850px;
        object-fit: cover;
        z-index: 0;
    }

    .registration-container {
        gap: 52px;
        align-items: flex-start;
        position: relative;
        z-index: 1;
    }

    .registration-header {
        gap: 24px;
        text-align: left;
        align-items: flex-start;
    }

    .registration-heading {
        max-width: 703px;
    }

    .registration-title-white,
    .registration-title-gold {
        font-size: 37px;
    }

    .registration-subtitle {
        font-size: 24px;
        max-width: 626px;
        text-align: left;
    }

    .registration-form {
        width: 554px;
        max-width: 100%;
        gap: 53px;
    }

    .form-fields {
        gap: 24px;
    }

    .form-field {
        height: 62px;
        padding: 14.496px 40px;
        border-radius: 10.147px;
        border: 1.2px solid #fff;
    }

    .form-phone {
        gap: 16px;
    }

    .flag-desktop {
        display: block;
        width: 33.357px;
        height: 27.471px;
        border-radius: 3.924px;
    }

    .dropdown-arrow {
        width: 11.773px;
        height: 7.849px;
    }

    .phone-flag-wrapper {
        gap: 10px;
    }

    .form-input {
        font-size: 18px;
    }

    .form-submit-wrapper {
        width: 441px;
    }

    .registration-button {
        font-size: 24px;
        max-width: 100%;
        height: 72px;
    }

    .button-text-desktop {
        display: block;
    }

    .privacy-text {
        font-size: 12.489px;
        max-width: 332px;
    }
}

.flag-desktop {
    display: none;
}

.button-text-desktop {
    display: none;
}
