/* Alap stílusok */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Központozott beállítás */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Fejléc */
h2 {
    font-size: 2rem;
    color: #1f2a37;
    margin-bottom: 15px;
    text-align: center;
}

/* Szöveges bekezdések */
p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* Erősítések */
strong {
    color: #004d99;
}

/* Címek */
h3 {
    font-size: 1.4rem;
    color: #004d99;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* Támogatás gomb */
.support-button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    background-color: #ff7f50;
    color: white;
    text-align: center;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.support-button:hover {
    background-color: #ff6a3a;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.support-button:active {
    transform: translateY(0);
}

/* Mobil nézetek - csak a kisebb képernyőkhöz módosul, az eredeti asztali stílusok változatlanok maradnak */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    p {
        font-size: 0.95rem;
    }
    
    .support-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
