body {
    margin: 0;
    padding: 15px;
    background: #fff;   /* changed to white */
    color: #000;        /* text now black */
    font-family: Arial, sans-serif;
}

h2 {
    text-align: center; /* keep main title centered */
    margin-bottom: 20px;
}

.section {
    margin: 30px 0;
}

/* 🔥 LEFT ALIGNED TITLES */
.section h3 {
    text-align: left;     /* changed */
    font-size: 24px;      /* slightly bigger */
    margin-bottom: 15px;
    border-left: 4px solid #00cc99;
    padding-left: 10px;
}

/* remove center wrapper effect */
.section-title {
    text-align: left;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.video-card {
    background: #f5f5f5;   /* light card on white bg */
    padding: 10px;
    border-radius: 10px;
    transition: 0.3s;
}

.video-card:hover {
    transform: scale(1.02);
}

.video-thumb {
    position: relative;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    border-radius: 8px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: red;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50%;
    font-size: 18px;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.title {
    font-size: 15px;
    margin-top: 8px;
    text-align: left;   /* better for readability */
}

.view-more {
    text-align: left;   /* aligned with section */
    margin-top: 15px;
}

.view-more a {
    text-decoration: none;
    color: #fff;
    background: #00cc99;
    padding: 8px 15px;
    border-radius: 5px;
}

.view-more a:hover {
    background: #00aa77;
}