.oomade-wrapper { max-width: 1000px; margin: 0 auto; padding: 60px 20px; }
.oomade-header { text-align: center; margin-bottom: 60px; }
.oomade-header h1 { font-size: 3rem; color: var(--primary); margin-bottom: 10px; }
.oomade-header p { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; color: #888; }

.oomade-hero {
    position: relative;
    height: 480px;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 8px;
}

.oomade-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
    color: #fff;
}

.hero-overlay h2 { font-size: 2.5rem; }

.oomade-content {
    display: grid;
    grid-template-columns: 1fr 1fr 220px;
    gap: 40px;
    align-items: start;
}

.col-text h3 { color: var(--text-dark); margin-bottom: 20px; font-size: 1.5rem; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 5px; }
.col-text p { color: #666; margin-bottom: 20px; line-height: 1.8; text-align: justify; }

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

@media(max-width: 768px) {
    .oomade-content { grid-template-columns: 1fr; gap: 30px; }
    .oomade-hero { height: 280px; }
    .col-image { display: flex; justify-content: center; }
    .col-image img { max-width: 320px; }
}
