/* Contact section with consistent styling for both light and dark modes */
#contactme-section {
    font-size: 1.1875rem;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

/* Ensure section aligns with page content width */
@media (min-width: 1200px) {
    #contactme-section {
        max-width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #contactme-section {
        max-width: 100%;
    }
}

/* Contact form styling */
#contact-form p {
    margin-bottom: 0.625rem;
}

#contact-form .form-control {
    margin-bottom: 0.9375rem;
}
