/* Section Header Component */
.section-header {
    text-align: center;
}

.section-header h1 {
    font-size: 40px;
    font-weight: normal;
    padding: 30px 0;
    margin: 30px 0;
    position: relative;
    text-transform: uppercase;
}

.section-header h1::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    background-color: #332;
    width: 100px;
    bottom: 0;
}

.section-header h1::after {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    border: 2px solid #333;
    border-radius: 50%;
    background-color: white;
}

.section-header p {
    max-width: 500px;
    margin: 0 auto 100px;
    color: #777;
}

/* Overlay Component */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}