.main-content {
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    padding-top: 120px;
    padding-bottom: 80px;
    gap: 40px; 
}

.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 800px;
}

.contact-section, .social-section {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-section h2, .social-section h2 {
    font-size: 2.2em;
    color: #ff914d;
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-section p, .social-section p {
    font-size: 1.1em;
     color: #3f6874;
    margin-bottom: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input, .form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box; 
}

.submit-button {
    padding: 15px;
    background-color: #ff914d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e87a3c;
}

.logo-tdb {
    width: 200px; 
    margin-bottom: 0; 
    transition: transform 0.3s ease-in-out;
}

.logo-tdb:hover {
    transform: scale(1.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-item a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 8px;
}

.social-item a:hover {
    transform: translateY(-5px);
    color: #ff914d;
}