
body {
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Softer gradient bg */
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Cleaner font */
    color: #333;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-container img {
    max-width: 150px; 
    height: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

main {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px; 
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    text-align: left;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

article {
    text-align: center;
    line-height: 1.6; 
}

.contacts-section {
    background: #f1f3f6; 
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border: 1px solid #e1e4e8;
}

.contact-item {
    margin: 12px 0;
    font-size: 15px;
    color: #555;
}

.language-section {
    text-align: center;
    margin: 25px 0;
}

.form-selection {
    text-align: center;
    margin-top: 40px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.submit-btn {
    min-width: 180px;
    padding: 15px 25px;
    font-size: 15px;
    background-color: #667eea; 
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 600;
}

.submit-btn:hover {
    background-color: #566bcf;
}

select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 2px solid #ddd;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
}

select:focus {
    outline: none;
    border-color: #667eea;
}

.required-note {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 10px;
    font-weight: bold;
}

