.sv-about-contact {
    color: var(--sv-primary);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.page-about .sv-about-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(to top, #fff, #ededed);
  z-index: -1;
}

.sv-about-contact__card {
    width: 100%;
    background-color: #f6f6f6;
    border-radius: var(--sv-radius-card);
    padding: 5rem var(--sv-content-padding);
    font-size: .95rem;
    line-height: 1.4;
}

.page-contact .sv-about-contact__card {
    background-color: #fff;
}

.sv-about-contact__heading {
    color: var(--sv-primary);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: .95rem;
}

.sv-about-contact__content {
    margin-bottom: 1.5rem;
}

.sv-about-contact__info {
    margin-bottom: 0;
}

.sv-about-contact__label {
    font-weight: 700;
    margin-right: 5px;
}

.sv-about-contact a {
    color: var(--sv-primary);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sv-about-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.sv-about-contact__registration {
    margin: 0;
    font-weight: 700;
}

.sv-about-contact__compliance {
    margin: 0 0 3rem;
}

.sv-about-contact__map {
    width: 100%;
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden;
}

.sv-about-contact__map iframe {
    width: 100%;
    border: 0;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .sv-contact-widget {
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .sv-about-contact__registration,
    .sv-about-contact__compliance {
        margin: 20px 0;
    }

    .sv-about-contact__card {
        background: none !important;
        border-radius: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .sv-about-contact__map {
        margin: 30px calc(-1 * var(--sv-content-padding) - var(--padding-inline-start, 10px)) 0;
        width: 100vw;
    }
}
