/* About Us Styles */
.about-container,
.contact-section {
    width: 80%;
    margin: 120px auto;
    background-color: var(--white-color);
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.about-title,
.contact-title {
    color: var(--secondary-bg-color);
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}

.about-desc,
.contact-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--granite-gray-color);
}

/* Contact Us Styles */

.contact-container {
    width: 100%;
}

.contact-contents {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.support-section,
.contact-form-section {
    padding: 20px;
    border-radius: 8px;
    width: 50%;
    margin-bottom: 20px;
}

.support-section h2,
.contact-form-section h2 {
    margin-bottom: 20px;
    color: var(--granite-gray-color);
    font-size: 30px;
}

.support-section p {
    font-size: 16px;
    color: var(--granite-gray-color);
    margin-bottom: 10px;
}

.support-section a {
    color: var(--vista-blue-color);
    font-size: 18px;
}

.support-section a:hover {
    color: var(--primary-bg-color);
}

.support-icon {
    height: 14px;
    width: 14px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 10px;
    display: inline-block;
    width: 20px;
    height: 20px;
    filter: grayscale(100%);
}

.social-icons a:hover {
    filter: none;
}

.social-icons img {
    width: 100%;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
}

.contact-form-section label {
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--granite-gray-color);
    font-size: 16px;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid var(--gainsboro-color);
}

.contact-form-section textarea {
    resize: none;
    height: 100px;
}


/* Responsive Design */
@media (max-width: 880px) {
    .contact-contents {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .support-section,
    .contact-form-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        width: 100%;
    }

    .support-section p,
    .about-desc,
    .contact-desc,
    .contact-form-section label {
        font-size: 14px;
    }

    .about-title,
    .contact-title {
        font-size: 24px;
    }

    .support-section h2,
    .contact-form-section h2 {
        font-size: 18px;
    }

}