body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f4f7f6;
}

.main-content-section {
    margin-top: 120px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-us-container {
    width: 90%;
    max-width: 900px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 224, 224, 0.5);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-header {
    width: 100%;
    background-color: transparent;
    padding: 18px 30px;
    border-bottom: 1px solid rgba(224, 230, 236, 0.7);
    text-align: center;
    border-radius: 12px 12px 0 0;
    box-shadow: none;
    margin-top: -30px;
    margin-left: -30px;
    margin-right: -30px;
    margin-bottom: 30px;
}

.box-header h2 {
    font-size: 1.6em;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.about-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-section {
    padding: 0px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-section h3 {
    font-size: 1.5em;
    font-weight: 600;
    color: #3f556a;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(224, 224, 224, 0.7);
    padding-bottom: 5px;
    display: inline-block;
}

.about-section p {
    font-size: 1em;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-size: 1em;
    margin-bottom: 8px;
    color: #4a4a4a;
    display: flex;
    align-items: flex-start;
}

.values-list li i {
    color: #3b82f6;
    margin-right: 8px;
    font-size: 1.1em;
    line-height: 1.7;
}

.about-image-section {
    text-align: center;
    margin-top: 30px;
}

.about-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 0.85em;
    color: #777;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .main-content-section {
        margin-top: 110px;
        padding-bottom: 40px;
    }
    .about-us-container {
        padding: 20px;
        width: 95%;
    }
    .box-header {
        margin-top: -20px;
        margin-left: -20px;
        margin-right: -20px;
        padding: 15px 20px;
    }
    .box-header h2 {
        font-size: 1.3em;
        letter-spacing: 0.8px;
    }
    .about-section h3 {
        font-size: 1.3em;
        text-align: center;
    }
    .about-section p {
        font-size: 0.95em;
    }
    .values-list li {
        font-size: 0.95em;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .box-header h2 {
        font-size: 1.2em;
        letter-spacing: 0.8px;
    }
    .about-section h3 {
        font-size: 1.2em;
    }
    .about-section p {
        font-size: 0.9em;
    }
    .values-list li {
        font-size: 0.9em;
    }
}