body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.about-us-section {
    padding: 50px 0;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 2.5em;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    display: inline-block; /* To make the border fit the text */
    width: auto;
}

.firm-description {
    margin-bottom: 40px;
    font-size: 1.1em;
    color: #555;
}

.firm-description p {
    margin-bottom: 15px;
}

.subsection-title {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.8em;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.partner-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid #3498db;
}

.partner-card h4 {
    margin-bottom: 5px;
    color: #2c3e50;
    font-size: 1.5em;
}

.partner-card .partner-title {
    font-style: italic;
    color: #777;
    margin-bottom: 10px;
}

.partner-card .partner-description {
    color: #555;
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr; /* Stack partners on smaller screens */
    }

    .partner-card {
        margin-bottom: 20px;
    }
}
