main {
    padding: 5px;
}


.contacts-wrapper {
    max-width: 900px;
    margin: 60px auto;
    background: var(--color-bg);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}


.contacts-wrapper h1 {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: #fff;
    padding: 20px 30px;
    font-size: 24px;
}


table.contacts-table {
    width: 100%;
    border-collapse: collapse;
}


caption {
    caption-side: top;
    text-align: left;
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent);
}


th,
td {
    padding: 14px 30px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
}


th {
    width: 30%;
    color: var(--color-secondary);
    font-weight: 600;
}


td a {
    color: var(--color-primary);
    font-weight: 600;
}


.section-title {
    background: #f0f0f0;
    padding: 12px 30px;
    font-weight: 700;
    color: var(--color-accent);
}


@media (max-width: 768px) {

    th,
    td {
        padding: 14px 14px;
    }
}