/* Contact Section */
.contact {
    margin-left: 2rem;
    margin-right: 2rem;
    padding: 5% 10%;
    /* Relative padding */
    background: var(--secondary-color);
    text-align: center;

}

.contact h2 {
    font-size: 2.5rem;
    /* Relative font size */
    margin-bottom: 3rem;
    /* Relative margin */
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    /* Relative gap */
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Relative gap */
    width: 100%;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    font-size: 1.25rem;
    font-family: var(--font-family);
    padding: 0.5rem;
    /* Relative padding */
    border-radius: 0.3rem;
    /* Relative border radius */
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--text-color);
}

.contact-form button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    /* Relative padding */
    border: none;
    border-radius: 0.3rem;
    /* Relative border radius */
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-form button:hover {

    transform: scale(1.1);
    background: #00e07a;
}

.contact-info {

    text-align: left;
    width: 100%;
    max-width: 400px;
}

.contact-info p {
    font-size: var(--font-body);
    margin-bottom: 1rem;
    /* Relative margin */
}

.contact-info i {
    margin-right: 0.5rem;
    /* Relative margin */
    color: var(--primary-color);
    font-size: 1.75rem;
    /* Relative font size */
}

/* Footer */
footer {
    padding: 2% 10%;
    /* Relative padding */
    background: var(--accent-color);
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    /* Relative gap */
    margin-top: 1rem;

    /* Relative margin */
}



.social-icons a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 2rem;
    /* Relative font size */
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}