
body {
    font-family: 'Inter', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; 
    color: #343a40; 
    line-height: 1.6; 
    box-sizing: border-box; 
}

*, *::before, *::after {
    box-sizing: inherit; 
}


.contact-page-container {
    max-width: 1200px; 
    margin: 4rem auto; 
    padding: 0 1.5rem; 
}


.contact-header {
    text-align: center;
    margin-bottom: 3rem; 
}

.contact-header h1 {
    font-size: 3.5rem; 
    font-weight: 700; 
    color: #383838; 
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    max-width: 700px; 
    margin: 0 auto;
    color: #6c757d; 
    margin-bottom: 10px;
}


.contact-content {
    display: flex; 
    flex-wrap: wrap; 
    gap: 2rem; 
    justify-content: center;
}


.contact-form-section,
.contact-info-section {
    background-color: #ffffff; 
    padding: 2.5rem; 
    border-radius: 0.75rem; 
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); 
    flex: 1; 
    min-width: 300px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 2rem;
    text-align: center;
}


.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block; 
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%; 
    padding: 0.8rem 1rem; 
    border: 1px solid #ced4da;
    border-radius: 0.5rem; 
    font-size: 1rem;
    color: #495057;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #007bff; 
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none; 
}

.contact-form textarea {
    resize: vertical; 
}

.submit-button {
    display: block; 
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #007bff;
    color: #ffffff; 
    border: none;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer; 
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.submit-button:hover {
    background-color: #0056b3; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3); 
}


.contact-info-section .info-item {
    margin-bottom: 1.5rem;
}

.contact-info-section .info-item:last-child {
    margin-bottom: 0; 
}

.contact-info-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-info-section p {
    font-size: 1rem;
    color: #495057;
}

.contact-info-section a {
    color: #007bff;
    text-decoration: none; 
    transition: color 0.2s ease; 
}

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

@media (max-width: 768px) {
    .contact-page-container {
        margin: 2rem auto; 
        padding: 0 1rem;
    }

    .contact-header h1 {
        font-size: 2.5rem; 
    }

    .contact-header p {
        font-size: 1rem; 
    }

    .contact-form-section,
    .contact-info-section {
        padding: 1.8rem; 
        min-width: unset; 
        flex: 1 1 100%; 
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 1.7rem; 
        margin-bottom: 1.5rem;
    }

    .submit-button {
        font-size: 1rem;
        padding: 0.9rem 1.2rem;
    }

    .social-links {
        margin-top: 1.5rem; 
    }
}
