.contact-card {
    padding: 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 61, 94, 0.14);
    border: 1px solid #dbe3ea;
}

.contact-photo {
    margin-bottom: 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbe3ea;
    background: #f4f7f9;
}

.contact-photo img {
    width: 100%;
    height: 190px;
    display: block;
    object-fit: cover;
}

.contact-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #fff3e3;
    display: grid;
    place-items: center;
    font-size: 26px;
    flex-shrink: 0;
}

.contact-card h2 {
    margin: 4px 0 0;
    font-size: 25px;
    line-height: 1.2;
    color: var(--blue, #0f3d5e);
}

.contact-intro {
    font-size: 16px;
    color: #344250;
    margin-bottom: 20px;
}

.contact-actions {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-outline-dark {
    border: 2px solid var(--blue, #0f3d5e);
    color: var(--blue, #0f3d5e);
    background: #ffffff;
}

.contact-info {
    background: #f4f7f9;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 15px;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: var(--blue, #0f3d5e);
    font-weight: 700;
}

.trust-box {
    background: linear-gradient(135deg, #f8fbfd, #ffffff);
    border: 1px solid #dbe3ea;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.trust-box h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: var(--blue, #0f3d5e);
}

.trust-box ul {
    margin: 0;
    padding-left: 18px;
}

.trust-box li {
    margin-bottom: 8px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.service-tags span {
    background: #e8f2f8;
    color: var(--blue, #0f3d5e);
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
}

.contact-note {
    margin: 0;
    font-size: 13px;
    color: #62717d;
    line-height: 1.5;
}

.expertise-section {
    background: #ffffff;
}

.section-heading {
    max-width: 920px;
    margin-bottom: 36px;
}

.section-heading h2 {
    margin-bottom: 16px;
}

.expertise-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 34px;
    align-items: start;
}

.expertise-content {
    display: grid;
    gap: 22px;
}

.expertise-block {
    background: #ffffff;
    border: 1px solid var(--border, #dbe3ea);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(15, 61, 94, 0.06);
}

.expertise-block h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--blue, #0f3d5e);
    font-size: 22px;
}

.expertise-block p:last-child {
    margin-bottom: 0;
}

.expertise-aside {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 20px;
}

.image-card img,
.pro-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.image-card .caption {
    margin-top: 12px;
    font-size: 14px;
    color: #5f6b75;
    line-height: 1.5;
}

.pro-card h3 {
    margin: 18px 0 10px;
    color: var(--blue, #0f3d5e);
}

.pro-card p {
    margin-bottom: 14px;
}

.pro-card ul {
    margin: 0;
    padding-left: 18px;
}

.pro-card li {
    margin-bottom: 8px;
}

.expertise-highlight {
    margin-top: 32px;
    background: linear-gradient(135deg, #fff7ec, #ffffff);
    border-left: 6px solid var(--orange, #f28c28);
    border-radius: 16px;
    padding: 22px 26px;
    font-size: 17px;
    box-shadow: 0 8px 22px rgba(242, 140, 40, 0.08);
}

@media (max-width: 950px) {
    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .expertise-aside {
        position: static;
    }
}

@media (max-width: 600px) {
    .expertise-block,
    .expertise-highlight {
        padding: 20px;
    }
}