* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #E5E5E5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1100px;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
}

.logo {
    max-width: 150px;
    margin: 20px auto;
    display: block;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 40px 40px;
    border-radius: 10px;
    margin: 20px;
    text-align: left;
    overflow: hidden;
}

.main-image {
    width: calc(100% + 80px);
    height: 500px;
    margin: 0 -40px 20px;
    display: block;
    object-fit: cover;
    object-position: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2em;
}

p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 30px;
}

.offices-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.people-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 20px;
}

.contact-item {
    padding: 20px;
    border-bottom: none;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
    text-align: left;
}

.contact-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #CD1719;
}

.contact-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
    margin-bottom: 5px;
}

.contact-title {
    color: #666;
    font-style: italic;
    margin-bottom: 8px;
}

.contact-links {
    margin-top: 5px;
}

.contact-links a {
    color: #0066cc;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.contact-links a:hover {
    text-decoration: underline;
}

.address-info {
    margin: 0;
    line-height: 1.4;
}

.section-title {

    padding: 20px;
}

.section-title h3 {
    color: #333;
    padding-left: 15px;
    position: relative;
    font-size: 1.3em;
}

.section-title h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #CD1719;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
        width: 100%;
    }

    .content {
        padding: 0 20px 20px;
        margin: 10px;
    }

    .content h1 {
        font-size: 1.5em;
        margin-bottom: 25px;
    }

    .content p {
        margin-bottom: 0px;
        line-height: 1.8;
    }

    .main-image {
        width: calc(100% + 40px);
        margin: 0 -20px 20px;
        height: 300px;
    }

    .logo {
        max-width: 150px;
        margin: 20px auto;
        display: block;
    }

    .offices-row,
    .people-grid {
        grid-template-columns: 1fr;
    }
}

.description {
    text-align: center;
    padding: 30px 0 40px;
}

.description p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
}