body,html{
    width: 100%;
    margin: 0;
    /* overflow: hidden; */
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    
    
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 80px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    
    
    
    
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-form, .contact-details {
    flex: 1 1 45%;
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 8px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input, 
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-details i {
    margin-right: 10px;
    color: #007bff;
}

