/* INTRO - BEVEZETŐ */
.intro {
  text-align: center;
  padding: 3rem 10% 2rem;
  max-width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.01);
} 

.intro h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.intro p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* IMPRESSZUM */
.impressum-container {
    max-width: 900px;
    margin: 2rem auto 4rem;
    padding: 0 10%;
}

.impressum-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.impressum-box h3 {
    margin-bottom: 2rem;
    color: rgb(0 106 117);
    text-align: center;
}

/* SOROK */
.impressum-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.impressum-item:last-child {
    border-bottom: none;
}

.impressum-item span {
    font-weight: 600;
    color: #333;
}

.impressum-item p {
    margin: 0;
    color: #555;
    text-align: right;
}

/* MOBIL */
@media (max-width: 600px) {
    .impressum-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .impressum-item p {
        text-align: left;
    }
}