
body {
    background-color: #020c19;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.banner-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0.5rem;
    background-color: #020c19;
    position: relative;
    display: flex;
    justify-content: center;
}

.banner-container picture {
    display: block;
    width: 100%;
    max-width: 1920px;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1025px) {
    .banner-image {
        max-height: 500px;
    }
}

@media (max-width: 1024px) {
    .banner-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .banner-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .banner-image {
        max-height: 200px;
    }
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    color: #D04523;
    margin-bottom: 2rem;
}

h2 {
    color: #D04523;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.main-text {
    line-height: 1.6;
}

.registration-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.sold-out-banner {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto -1rem;
}

.fully-booked-section {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    text-align: center;
}

.waiting-list-text {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
}

.btn-primary {
    background-color: #D04523;
    border: none;
}

.btn-primary:hover {
    background-color: #b33d1f;
}

.fully-booked-img {
    max-width: 200px;
    margin: 2rem auto;
    display: block;
}

.waiting-list-text {
    text-align: center;
    margin: 2rem 0;
}

.required::after {
    content: "*";
    color: #D04523;
    margin-left: 4px;
}

.icon {
    width: 24px;
    height: auto;
    object-fit: contain;
}

.agenda-list {
    list-style-type: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.agenda-list li {
    margin-bottom: 0.5rem;
}

h2.d-flex {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
