:root {
    --main-font-color: #494948;
    --heading-font-family: "Playfair", serif;
    --default-font-family: "Poppins", sans-serif;
    --button-color: #ffac00;
    --default-color: #282044;
    --background-color: #faf9f6;
}

body {
    background-color: var(--background-color);
    color: var(--main-font-color);
    font-family: var(--default-font-family);
}

h1,
h3 {
    font-family: var(--heading-font-family);
}

.btn {
    text-decoration: none;
    background: var(--button-color);
    border-radius: 4px;
    color: var(--default-color);
    font-size: 18px;
    line-height: 27px;
    padding: 12px 20px;
}

.contact-section {
    min-height: 70vh;
}

.contact-form {
    max-width: 500px;
}

.contact-info {
    max-width: 400px;
}

.email-address {
    word-break: break-word;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    transition: 0.3s ease;
    text-decoration: none;
    color: var(--button-color);
}

.social-icon:hover {
    background: #0d6efd;
    color: #fff;
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 0 10px;
    }

    .contact-info {
        text-align: center;
    }
}
