.dark-section {
    background-color: #343a40;
    color: #ffffff;
    padding: 4rem 0;
}

.light-text h2, .light-text p {
    color: #ffffff;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 450px));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 20px;
    justify-content: center;
}

.contact-method {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 1.8rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-method-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-method-header i {
    font-size: 2.2rem;
    color: #343a40;
    margin-bottom: 0.8rem;
}

.contact-method-header h4 {
    font-weight: 600;
    color: #343a40;
    margin: 0;
}

.contact-method-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method p {
    color: #6c757d;
    margin-bottom: 0.8rem;
}

.contact-method a {
    color: #a4b0be !important;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-method a:hover {
    color: #0077b5 !important;
    text-decoration: underline;
}

.contact-method:hover {
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
    }
}
