.contact-section {
    background-color: #FBE8E8;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.contact-title {
    font-family: 'Silkscreen', cursive;
    font-size: 2.5rem;
    color: #2D2D2D;
    margin: 0;
    font-weight: 700;
}

.contact-description {
    font-family: sans-serif;
    font-size: 1.1rem;
    color: #4A4A4A;
    max-width: 600px;
    line-height: 1.6;
    margin: 0.5rem 0 1.5rem 0;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-btn {
    background-color: #FFFFFF;
    color: #C75B5B;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 15px #00000015;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #00000015;
    color: #A04545;
}