/* Alapértelmezett stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
    body {
    font-family: Arial, sans-serif;
    background-color: #fdfefe; /* Egységes alapszín */
    }
    
    header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    }
    
    .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    }
    
    .logo img {
    max-width: 50%;
    display: block;
    margin: 0 auto;
    }
    
    main {
    background-color: white;
    color: #333; /* Egységes szövegszín */
    padding: 50px 0;
    }
    
    .title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    }
    
    .subtitle {
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
    }
    
    .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background-color: #1c1c1c; /* Elérhetőségi doboz háttere */
    }
    
    .contact {
    text-align: center;
    }
    
    .contact-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    }
    
    .contact-info {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
    }
    
    @media screen and (max-width: 768px) {
    .logo {
    width: 50%;
    margin: 0 auto;
    }
    .title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .contact-container {
        padding: 20px 0;
    } 
}
.contact {
margin: 0 auto;
}

.contact-title {
font-size: 20px;
margin-bottom: 10px;
}

.contact-info {
font-size: 14px;
margin-bottom: 5px;
}

/* Új stílusok */
.services {
background-color: #f2f2f2;
padding: 50px 0;
}

.services-title {
font-size: 36px;
font-weight: bold;
text-align: center;
margin-bottom: 50px;
}

.services-container {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}

.service-card {
background-color: white;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.3);
margin: 20px;
padding: 20px;
width: 30%;
min-width: 300px;
max-width: 400px;
}

.service-card img {
max-width: 100%;
margin-bottom: 20px;
}

.service-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 10px;
}

.service-description {
font-size: 16px;
margin-bottom: 20px;
}

.service-link {
color:#333; /* Egységes szövegszín */
padding: 50px 0;
}

.title {
font-size: 32px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
margin-top: 30px;
}

.subtitle {
font-size: 24px;
text-align: center;
margin-bottom: 50px;
}
.info{
    font-size: 52px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
    }

.contact-container {
display: flex;
justify-content: center;
align-items: center;
padding: 50px 0;
background-color: #1c1c1c; /* Elérhetőségi doboz háttere */
}

.contact {
text-align: center;
}

.contact-title {
font-size: 24px;
font-weight: bold;
color: white;
margin-bottom: 20px;
}

.contact-info {
font-size: 16px;
color: white;
margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
.logo {
width: 50%;
margin: 0 auto;
}
.title {
    font-size: 32px;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}
.contact-container {
    padding: 20px 0;
} 
}
.contact {
margin: 0 auto;
}

.contact-title {
font-size: 20px;
margin-bottom: 10px;
}

.contact-info {
font-size: 14px;
margin-bottom: 5px;
}

/* Animációk */
.logo img {
animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}