.page-main {
    max-width: 1400px;
    margin: 60px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(50, 60, 120, 0.10);
    padding: 48px 32px 40px 32px;
    font-family: Roboto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #A80202;
    margin: 0 0 24px 0;
    letter-spacing: -1.2px;
    font-family: Roboto;
}

.section {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-bottom: 32px;
    width: 100%;
    max-width: 1550px;
    padding: 0 16px;
}
.column {
    min-width: 0;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #A80202;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.btn:hover {
    background: #c00;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-wrapper iframe {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    border: 0;
}
h1 {
    margin-top: 0;
    font-weight: normal;
}
.contact-info-box {
    font-family: Roboto;
    color: #333;
    max-width: 800px;
    margin: 0;
    line-height: 1.6;
}

.company-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.address-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
}

.address-row i {
    color: #333;
    font-size: 24px;
}

.address-row a {
    color: #333;
    text-decoration: none;
}

.phone-row {
    margin: 25px 0;
}

.phone-link {
    text-decoration: none;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.phone-prefix {
    color: #333;
}

.phone-number {
    color: #d32f2f;
    margin-left: 5px;
}

.email-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.email-row i {
    color: #d32f2f;
    font-size: 20px;
}

.email-row a {
    color: #d32f2f;
    text-decoration: none;
    font-size: 18px;
}
@media (max-width: 900px) {
    .section {
        grid-template-columns: 1fr;
    }
}