/* Kapcsolat oldal stílusai */
.contact-container {
    text-align: center;
    padding: 50px 10%;
    background: white;
    opacity: 1;
    transform: translateY(0);
}

.contact-container h1 {
    font-size: 36px;
    color: #A31C20;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.contact-info2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
}

.contact-info a {
    color: #A31C20;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.contact-form h2 {
    font-size: 28px;
    color: #A31C20;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #A31C20;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #A31C20;
}
