* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    line-height: 1.7;

    /* blue stripes */
    background: repeating-linear-gradient(to right,
            #ffffff 0px,
            #ffffff 40px,
            #eaf3ff 40px,
            #eaf3ff 80px);
}

/* HEADER */
header {
    text-align: center;
    padding: 70px 20px 40px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
}

header h1 {
    font-size: 2.5rem;
    color: #1f5fae;
    margin-bottom: 10px;
}

header p {
    max-width: 600px;
    margin: 0 auto;
    color: #5a6d82;
}

/* REMOVE container width restriction */
.container {
    width: 100%;
}

/* SECTIONS FULL WIDTH 💖 */
section {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    margin: 50px 0;
    padding: 30px 20px;
    border-top: 4px solid #e498af;
    border-bottom: 4px solid #e99db3;
}

/* INNER CONTENT (to keep text centered) */
section>* {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* TITLES */
h2 {
    font-size: 1.6rem;
    color: #1f5fae;
    margin-bottom: 12px;
    position: relative;
}

h2::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #f70202;
    position: absolute;
    left: 0;
    bottom: -6px;
    border-radius: 10px;
}

/* TEXT */
p {
    color: #3f5166;
    margin-top: 10px;
}

/* LIST */
ul {
    margin-top: 10px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* VIDEO BUTTON */
.video-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff7aa2, #ff4d6d);
    color: white;
    text-decoration: none;
    border-radius: 999px;
    font-weight: bold;
    transition: 0.25s ease;
}

.video-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 77, 109, 0.3);
}

/* GALLERY */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    /* let image keep its real proportions */
    border-radius: 14px;
    transition: 0.25s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.gallery-item p {
    font-size: 0.9rem;
    margin-top: 6px;
    color: #5a6d82;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    color: #6c7f95;
    font-size: 0.9rem;
}



/* MOBILE */
@media (max-width: 600px) {
    header h1 {
        font-size: 2rem;
    }

    section {
        padding: 25px 15px;
    }
}