/* PAGE WRAPPER */
.interest-page {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO BACKGROUND */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* DARK OVERLAY */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

/* CENTER CONTENT */
.interest-content {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    color: rgb(255, 232, 188);
}

.interest-content h1 {
    font-size: 3rem;
    color: var(--main-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255,94,0,0.4);
}

.interest-content .intro {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: rgba(255,255,255,0.8);
}

/* DETAILS SECTIONS */
.interest-details,
.certificates {
    padding: 4rem 10vw;
    background: black;
    color: white;
}

.interest-details h2,
.certificates h2 {
    color: var(--main-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.interest-details ul,
.certificates ul {
    list-style: none;
    padding: 0;
}

.interest-details li,
.certificates li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}