﻿.nosotrosTitle {
    display: flex;
    justify-content: center;
}

    .nosotrosTitle h1 {
        text-align: center;
        width: 90%;
        border-style: double;
        margin-top: 40px;
    }

/* Main container */
.container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem;
}

/* Sections */
.about-section {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

    .about-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        border-left: 4px solid #2f3031;
        padding-left: 0.75rem;
    }

    .about-section p {
        font-size: 1rem;
        color: #374151;
    }

    /* List */
    .about-section ul {
        list-style: none;
        margin-top: 1rem;
    }

    .about-section li {
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        position: relative;
    }

        .about-section li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2f3031;
            font-weight: bold;
        }

