html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "acumin-variable-concept", sans-serif;
    background: white;
    color: black;
}

.header-bar {
    background: #54A4DB;
    color: white;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bar h1 {
    margin: 0;
    font-size: 40px;
}

.logo {
    height: 60px;
}

.nav-bar {
    text-align: center;
    font-size: 24px;
    margin: 25px 0;
}

.nav-bar a {
    margin: 0 40px;
    text-decoration: none;
    color: black;
    font-style: italic;
}

.nav-bar a:hover {
    color: #054a7f;
}

body.thankyou-page {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
}

.thankyou-page main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.thankyou-section h2 {
    font-size: 72px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 30px;
}

.thankyou-page main img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.footer-bar {
    text-align: center;
    padding: 14px;
    background: #54A4DB;
    color: white;
    font-size: 18px;
    font-style: italic;
}

.footer-bar a {
    color: white;
    text-decoration: none;
}

.footer-bar a:hover {
    text-decoration: underline;
}

.player-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

.player {
    margin-bottom: 80px;
}

.player img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 12px;
}

.player img.float-img {
    float: left;
    max-width: 380px;
    margin: 0 30px 20px 0;
}

.player p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

.player::after {
    content: "";
    display: block;
    clear: both;
}

.landing-section,
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    flex-wrap: wrap;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-size: 40px;
    font-style: italic;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}

.about-img img {
    max-width: 450px;
    width: 100%;
    height: auto;
}

.contact-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.contact-section h2 {
    font-size: 40px;
    font-style: italic;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 30px;
    font-size: 18px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form label {
    text-align: left;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #999;
    border-radius: 4px;
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

#mySubmit {
    margin-top: 20px;
    padding: 12px;
    font-size: 16px;
    background: #54A4DB;
    color: white;
    border: none;
    cursor: pointer;
}

#mySubmit:hover {
    background: #054a7f;
}

@media (max-width: 900px) {
    .nav-bar a {
        display: inline-block;
        margin: 10px 20px;
    }

    .thankyou-section h2 {
        font-size: 48px;
    }

    .player img.float-img {
        float: none;
        display: block;
        margin: 0 auto 20px;
    }
}
