* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    text-align: center;
    background-color: #f9f9f9;
}

/* Banner (Cover Image + Logo) */
.banner {
    position: relative;
    width: 100%;
    height: 180px; /* Adjusted */
    overflow: hidden;
    background-color: black; /* Fallback */
}

.cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Logo in Top-Left */
.logo-container {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 2;
}

.logo {
    width: 80px;
    height: auto;
    border-radius: 50%;
    border: 3px solid white;
}

/* YouTube Video */
.video-container {
    margin: 20px auto;
    max-width: 560px;
}

/* Pinterest Section */
.pinterest-section {
    margin: 20px auto;
    padding: 10px;
    background: white;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.pinterest-section img {
    width: 100px;
    margin-top: 10px;
}
