.contact-section {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 240px 0;
}

.contact-header {
    max-width: 650px;
    margin-bottom: 40px;
}

.contact-header h1 {
    margin-bottom: 12px;
}

.contact-header p {
    color: #a0a0a0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.contact-card {
    background: var(--primary-element-colour);
    border-radius: var(--primary-border-radius);
    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.contact-card:hover {
    background-color: var(--secondary-element-hover-colour);
    transform: translateY(-2px);
}

.contact-card h2 {
    margin-top: 0;
    margin-bottom: 12px;
}

.contact-card p {
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

.contact-button {
    display: inline-block;
    width: fit-content;

    margin-top: 32px;
    padding: 10px 18px;

    background-color: var(--highlight-colour);
    color: white;

    border-radius: var(--primary-border-radius);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;

    transition: opacity 0.2s ease;
}

.contact-button:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        min-height: 180px;
        padding: 24px;
    }
}
