.contact-hero {
    padding: 128px 0 48px;
    background: linear-gradient(180deg, hsla(180, 68%, 46%, 0.05) 0%, #ffffff 100%);
}

.contact-hero .contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-hero .contact-hero-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero .contact-hero-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 700;
    color: hsl(210, 50%, 15%);
    margin-bottom: 24px;
}

.contact-hero .contact-hero-text {
    font-size: 18px;
    line-height: 28px;
    color: hsl(210, 20%, 45%);
}

.contact-options {
    padding: 64px 0;
    background-color: #ffffff;
}

.contact-options .contact-options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-options .contact-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 896px;
    margin: 0 auto;
}

.contact-options .contact-options-card {
    border: 2px solid hsl(180, 20%, 90%);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-options .contact-options-card:hover,
.contact-options .contact-options-card.is-hover {
    border-color: hsla(180, 68%, 46%, 0.5);
}

.contact-options .contact-options-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: hsla(180, 68%, 46%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.contact-options .contact-options-icon i {
    font-size: 32px;
    color: hsl(180, 68%, 46%);
}

.contact-options .contact-options-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: hsl(210, 50%, 15%);
    margin-bottom: 16px;
}

.contact-options .contact-options-desc {
    font-size: 16px;
    line-height: 26px;
    color: hsl(210, 20%, 45%);
    margin-bottom: 24px;
}

.contact-options .contact-options-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: hsl(180, 68%, 46%);
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s ease;
    text-decoration-line: none;
}

.contact-options .contact-options-link:hover {
    color: hsla(180, 68%, 46%, 0.8);
}

.contact-options .contact-options-link-icon {
    font-size: 20px;
}

.contact-options .contact-options-action {
    margin-top: 24px;
}

.contact-options .contact-options-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.contact-options .contact-options-button-primary {
    background-color: hsl(180, 68%, 46%);
    color: #ffffff;
    border: 1px solid hsl(180, 68%, 46%);
    text-decoration-line: none;
}

.contact-options .contact-options-button-primary:hover {
    background-color: hsl(180, 68%, 40%);
    border-color: hsl(180, 68%, 40%);
}

.contact-options .contact-options-button-outline {
    background-color: transparent;
    color: hsl(180, 68%, 46%);
    border: 1px solid hsl(180, 68%, 46%);
    text-decoration-line: none;
}

.contact-options .contact-options-button-outline:hover {
    background-color: hsla(180, 68%, 46%, 0.1);
}

.contact-options .contact-options-button:active,
.contact-options .contact-options-button.is-pressed {
    transform: translateY(1px);
}

.contact-options .contact-options-button-icon {
    font-size: 16px;
}

.contact-options .contact-options-button:focus-visible,
.contact-options .contact-options-link:focus-visible {
    outline: 2px solid hsla(180, 68%, 46%, 0.4);
    outline-offset: 3px;
}

.contact-response {
    padding: 64px 0;
    background-color: hsla(180, 30%, 96%, 0.3);
}

.contact-response .contact-response-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.contact-response .contact-response-content {
    max-width: 672px;
    margin: 0 auto;
    text-align: center;
}

.contact-response .contact-response-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: hsl(210, 50%, 15%);
    margin-bottom: 16px;
}

.contact-response .contact-response-text {
    font-size: 16px;
    line-height: 26px;
    color: hsl(210, 20%, 45%);
}

@media (min-width: 768px) {
    .contact-hero .contact-hero-title {
        font-size: 48px;
        line-height: 56px;
    }

    .contact-options .contact-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 112px 0 40px;
    }

    .contact-options {
        padding: 48px 0;
    }

    .contact-options .contact-options-card {
        padding: 24px;
    }

    .contact-response {
        padding: 48px 0;
    }
}
