/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

/* Header Styling */
header {
    background-color: #232F3E;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo a {
    font-size: 24px;
    color: white;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a.active {
    color: #FF9900;
}

/* Privacy Policy Section */
.privacy-section {
    padding: 50px;
    background-color: white;
    max-width: 1200px;
    margin: 50px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.privacy-section h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.privacy-section h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #232F3E;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin-bottom: 20px;
}

.privacy-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
}

/* Footer Styling */
footer {
    text-align: center;
    padding: 20px;
    background-color: #232F3E;
    color: white;
    margin-top: 50px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 30px;
    }

    .privacy-section h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 22px;
    }

    footer {
        padding: 15px;
    }
}
/* Logo link styling */
.logo a {
    text-decoration: none;
    color: white;
}

.logo a:hover {
    text-decoration: underline;
}

.logo img {
    max-height: 75px;
    /* Állítsd be a kívánt magasságot */
    margin-right: 10px;
    /* Hely a kép és a szöveg között */
}

.logo span {
    font-size: 24px;
    /* Állítsd be a kívánt betűméretet */
    font-weight: bold;
}