﻿.section {
    padding-top: 66px;
    padding-bottom: 66px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

    .section-title h2 {
        font-size: 24px;
        font-weight: bold;
        color: #004098;
        margin-bottom: 16px;
    }

    .section-title .divider {
        width: 80px;
        height: 2px;
        background-color: #3B82F6;
        margin: 0 auto;
    }

.about-section {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

    .about-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      /*  background-color: rgba(30, 58, 138, 0.5);*/
    }

.about-content {
    position: relative;
    text-align: center;
    color: white;
}

    .about-content h1 {
        font-size: 48px;
        font-weight: bold;
        margin-bottom: 16px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .about-content p {
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
