/* Globális stílusok */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Világosszürke háttér */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Teljes képernyő magasság */
    margin: 0;
    color: #343a40; /* Sötétszürke szöveg */
    line-height: 1.6;
}

/* Konténer a tartalomnak */
.container {
    max-width: 700px;
    width: 90%; /* Kisebb képernyőn is jól mutat */
    padding: 20px;
}

/* Kártya stílus (a fő blokk) */
.card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Lekerekített sarkok a fejlécnek/láblécnek */
}

/* Kártya fejléc */
.card-header {
    background-color: #007bff; /* Kék háttér */
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.card-header h1 {
    margin: 0;
    font-size: 2em;
    font-weight: 600;
}

/* Kártya törzs */
.card-body {
    padding: 30px 20px;
    text-align: center;
}

.card-body p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.card-body .illustration {
    max-width: 200px; /* Az illusztráció mérete */
    height: auto;
    margin-bottom: 30px;
    opacity: 0.85; /* Kicsit áttetszőbb */
}

/* Kapcsolati információk */
.contact-info {
    margin-top: 25px;
    font-size: 0.95em;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Közösségi média ikonok */
.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Távolság az ikonok között */
}

.social-links img {
    width: 35px; /* Ikon mérete */
    height: 35px;
    transition: transform 0.2s ease-in-out;
}

.social-links img:hover {
    transform: scale(1.1); /* Kisebb animáció */
}

/* Kártya lábléc */
.card-footer {
    background-color: #e9ecef; /* Világosszürke háttér */
    color: #6c757d;
    padding: 15px 20px;
    text-align: center;
    font-size: 0.85em;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Reszponzivitás kisebb képernyőkre */
@media (max-width: 768px) {
    .card-header h1 {
        font-size: 1.7em;
    }
    .card-body p {
        font-size: 1em;
    }
    .card-body .illustration {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .card-header h1 {
        font-size: 1.5em;
    }
    .card-body {
        padding: 20px 15px;
    }
}
