/* styles/contact.css */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact-section.content-section {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #ddd;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
    border-radius: 5px;
}

#contact-section .page-title {
    color: #4CAF50;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

#contact-section.content-section p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.contact-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.contact-item a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #388E3C;
}

.contact-note {
    font-size: 16px;
    color: #888;
    margin-top: 20px;
}

@media (max-width: 768px) {
    #contact-section.content-section p, .contact-item p {
        font-size: 16px;
    }

    #contact-section .page-title, .contact-item h3 {
        font-size: 28px;
    }

    .contact-note {
        font-size: 14px;
    }
}
