* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff6ee;
    font-family: 'Filomtype LaCrosse', Regular, sans-serif;
    font-size: 17px;
    color: #7b1f16;
}

.container {
    padding: 10px;
    max-width: 1000px;
    margin: 0 auto;
}

h1, p {
    font-family: 'Filomtype LaCrosse', Regular, sans-serif;
    font-size: 17px;
    color: #7b1f16;
}

.logo-section {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 40px;
}

.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.content-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.nav-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.nav-button:hover {
    opacity: 0.7;
}

.button-img {
    max-width: 100px;
    height: auto;
    display: block;
}

.video-placeholder {
    width: 100%;
    max-width: 1500px;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 8px solid #7b1f16;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7b1f16;
}

.video-placeholder p {
    font-family: 'Filomtype LaCrosse', Regular, sans-serif;
    font-size: 17px;
    color: #7b1f16;
}

.info-section {
    display: flex;
    justify-content: space-between;
    align-items: left;
    gap: 600px;
    margin: 0px;
    max-width: 800px;
}

.info-img {
    flex: 1;
    max-width: 200px;
    height: auto;
    display: block;
}

h1 {
    font-family: 'Filomtype LaCrosse', Regular, sans-serif;
    font-size: 17px;
    color: #7b1f16;
    white-space: nowrap;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .logo {
        max-width: 60px;
    }

    .content-section {
        gap: 15px;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .button-img {
        max-width: 70px;
    }

    h1 {
        font-size: 14px;
        white-space: normal;
    }

    .video-placeholder {
        max-width: 100%;
        border: 6px solid #7b1f16;
        margin: 30px auto;
    }

    .info-section {
        gap: 30px;
        max-width: 100%;
    }

    .info-img {
        max-width: 150px;
    }

    body {
        font-size: 14px;
    }

    h1, p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 50px;
    }

    .content-section {
        gap: 10px;
        max-width: 100%;
    }

    .button-img {
        max-width: 50px;
    }

    .logo-section {
        margin-bottom: 30px;
    }

    .video-placeholder {
        border: 4px solid #7b1f16;
        margin: 20px auto;
    }

    .info-img {
        max-width: 120px;
    }

    h1 {
        font-size: 12px;
    }

    body {
        font-size: 12px;
    }

    h1, p {
        font-size: 12px;
    }

    .nav-button {
        padding: 5px;
    }
}
