* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.nav-button {
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 80px;
    display: block;
}

header a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    background-color: #7f4dbc;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
    text-decoration: none;
}

.nav-button:hover {
    background-color: #6a3fa0;
}

.main-content {
    display: flex;
    padding: 2rem 5%;
}

.card {
    display: flex;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.form-section {
    flex: 1;
    padding: 2rem;
}

.image-section {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bcp-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 200px;
    z-index: 2;
}
.bcp-gift {
    position: absolute;
    top: 15%;
    text-align: center;
    max-width: 300px;
    z-index: 2;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .main-content {
        padding: 1rem 3%;
    }
    
    .card {
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 3%;
        flex-wrap: wrap;
    }

    .logo {
        height: 60px;
    }

    .nav-buttons {
        width: 100%;
        justify-content: space-around;
        margin-top: 0.5rem;
    }

    .nav-button {
        font-size: 14px;
        padding: 0.3rem 0.7rem;
    }

    .card {
        flex-direction: column;
    }
    
    .image-section {
        min-height: 300px;
    }

    .form-section {
        padding: 1rem;
    }

    .bcp-logo {
        max-width: 00px;
        bottom: 10px;
        right: 10px;
    }
}

.thanks-card {
    background: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    text-align: center;
}

.thanks-title {
    color: #7f4dbc;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: -0.5rem;
}

.thanks-message {
    font-size: 1.1rem;
    line-height: 1.5;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #7f4dbc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: center;
}

.cta-button:hover {
    background-color: #6a3fa0;
}

@media (max-width: 768px) {
    .thanks-card {
        margin: 1rem;
    }

    .thanks-content {
        padding: 2rem;
    }

    .thanks-title {
        font-size: 2rem;
    }

    .thanks-message {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 50px;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .nav-button {
        font-size: 12px;
        padding: 0.2rem 0.5rem;
    }

    .main-content {
        padding: 0.5rem;
    }

    .card {
        border-radius: 5px;
    }

    .image-section {
        min-height: 250px;
    }

    .bcp-logo {
        max-width: 80px;
        bottom: 5px;
        right: 5px;
    }
}
