
.contact-section {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
}

/* Section Titles */
.contact-section h1,
.contact-section h2 {
    color: #333;
    margin-bottom: 10px;
}

.contact-section h1 {
    font-size: 2.5rem;
    text-align: center;
}

.contact-section h2 {
    font-size: 1.8rem;
    color: #444;
    margin-top: 20px;
}

/* Paragraph Styling */
.contact-section p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contact Information and Links */
.contact-section strong {
    color: #333;
    font-weight: bold;
}

.contact-section a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.contact-section a:hover {
    color: #0056b3;
    text-decoration: underline;
}







.contact-form {
    margin-top: 2rem;
    background-color: #f9f9f9;
    /* Add a light background */
    padding: 2rem;
    /* Add padding around the form */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    max-width: 600px;
    /* Limit form width */
    margin: 2rem auto;
    /* Center align the form */
}

.contact-form h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1abc9c;
    /* Highlighted border on focus */
    outline: none;
}

.contact-form button {
    display: block;
    width: 100%;
    background: #2c3e50;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #1abc9c;
    transform: translateY(-2px);
    /* Subtle hover effect */
}

.contact-form button:active {
    transform: translateY(0);
    /* Reset on click */
}

.contact-form textarea {
    resize: none;
    /* Prevent resizing */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

/* Add responsive design for smaller screens */
@media (max-width: 768px) {
    .contact-form {
        padding: 1rem;
    }

    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
    }

    .contact-form button {
        font-size: 0.9rem;
    }
}
