@import url('../main-css-components/style.css');
@import url('../main-css-components/navbar.css');
@import url('../main-css-components/button.css');
@import url('../main-css-components/footer.css');
@import url('../responsive/responsive-main-css-components/responsive-button.css');
@import url('../responsive/responsive-main-css-components/responsive-navbar.css');
@import url('../main-css-components/accordion.css');
@import url('../main-css-components/flip-card.css');




.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
    width: 100%;
}

.top-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin-bottom: 2rem;
}

.text-side {
    flex: 1 1 400px;
    text-align: left;
}

.text-side h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.text-side span {
    color: #ff4081;
}

.text-side h1 span {
    display: block;
    max-width: 20ch;
    /* Or try 15ch for even shorter line */
    white-space: normal;
}

.text-side p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.illustration img {
    max-width: 100%;
    height: auto;
    width: 400px;
    max-height: 400px;
}


.thank-you {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #ff80ab;
    width: 70%;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: nowrap;
    /* Prevent wrapping to new line */
    justify-content: space-between;
    /* Add space between columns */
    gap: 20px;
    /* Optional: spacing between columns */
    margin: 20px 0;
}

.col-md-4 {
    flex: 0 0 32%;
    /* Three columns per row */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .row {
        flex-wrap: wrap;
    }

    .col-md-4 {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.what-else {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    margin-top: 5%;
}