*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, sans-serif;
  background:#f5f5f5;
  color:#333;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.site-header{
  background:#06224a;
  color:white;
  padding:20px 0;
}

.site-header h1{
  text-align:center;
  margin-bottom:15px;
}

.main-nav{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.main-nav a{
  color:white;
  text-decoration:none;
  padding:10px 15px;
  border-radius:5px;
}

.main-nav a:hover{
  background:rgba(255,255,255,0.2);
}

.hero{
  background:white;
  margin:40px auto;
  padding:40px;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.hero h2{
  margin-bottom:20px;
  color:#0b3d91;
}

.lead{
  font-size:1.2rem;
  margin-bottom:20px;
}

.quick-info{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin:25px 0;
  font-weight:bold;
}

.btn{
  display:inline-block;
  background:#0b3d91;
  color:white;
  text-decoration:none;
  padding:12px 20px;
  border-radius:6px;
  margin-right:10px;
}

.btn:hover{
  opacity:0.9;
}

.secondary{
  background:#666;
}

.site-footer{
  background:#222;
  color:white;
  padding:30px 0;
  margin-top:50px;
}

.site-footer a{
  color:#fff;
}
.hero-image img{
  width:100%;
  height:500px;
  object-fit:cover;
  display:block;
}
.logo-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-bottom:20px;
}

.logo-title img{
  height:80px;
  width:auto;
}

.logo-title h1{
  margin:0;
  color:white;
}
@media (max-width: 768px){

  .logo-title img{
    height:50px;
  }

  .logo-title h1{
    font-size:1.8rem;
  }

  .hero-image img{
    height:220px;
  }

}
.apartmanok{
  margin:40px 0;
}

.apartmanok h2{
  text-align:center;
  color:#082b5c;
  margin-bottom:25px;
}

.apartman-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:25px;
}

.apartman-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 0 15px rgba(0,0,0,0.12);
}

.apartman-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.apartman-content{
  padding:25px;
}

.apartman-content h3{
  color:#082b5c;
  margin-bottom:10px;
}

@media (max-width:768px){
  .apartman-grid{
    grid-template-columns:1fr;
  }

  .apartman-card img{
    height:220px;
  }
}
.terkep-szekcio{
  background:#fff;
  margin:40px 0;
  padding:40px;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.terkep-szekcio h2{
  text-align:center;
  color:#082b5c;
  margin-bottom:20px;
}

.terkep-szoveg{
  text-align:center;
  max-width:800px;
  margin:0 auto 25px;
}

.terkep{
  margin:20px 0;
}

.terkep iframe{
  width:100%;
  height:380px;
  border:0;
  border-radius:10px;
}

.terkep-info{
  text-align:center;
  margin-top:20px;
  font-weight:bold;
}

.terkep-info p{
  margin:8px 0;
}
.elonyok{
  background:#fff;
  margin:40px 0;
  padding:40px;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
}

.elonyok h2{
  text-align:center;
  color:#082b5c;
  margin-bottom:30px;
}

.elonyok-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.elony{
  background:#f8f9fb;
  padding:20px;
  border-radius:10px;
  text-align:center;
}

.elony h3{
  color:#082b5c;
  margin-bottom:10px;
}

@media (max-width:768px){

  .elonyok-grid{
    grid-template-columns:1fr;
  }

}
.arak{
  background:#fff;
  margin:40px 0;
  padding:40px;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,0.1);
  width:100%;
}

.arak h2{
  text-align:center;
  color:#082b5c;
  margin-bottom:30px;
}

.arak-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
  max-width:800px;
  margin:0 auto 25px;
}

.ar-doboz{
  background:#f8f9fb;
  padding:25px;
  border-radius:10px;
  text-align:center;
}

.ar-doboz h3{
  color:#082b5c;
  margin-bottom:15px;
}

.ar-info{
  text-align:center;
  font-weight:bold;
  line-height:2;
}

.arak-megjegyzes{
  text-align:center;
  margin-top:20px;
  color:#666;
}

@media (max-width:768px){
  .arak-grid{
    grid-template-columns:1fr;
  }
}
.booking-form{
  margin-top:30px;
}

.booking-form label{
  display:block;
  margin:15px 0 6px;
  font-weight:bold;
  color:#082b5c;
}

.booking-form input,
.booking-form select,
.booking-form textarea{
  width:100%;
  padding:12px;
  border:1px solid #ccc;
  border-radius:6px;
  font-size:1rem;
}

.checkbox-label{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin-top:20px !important;
  color:#333 !important;
}

.checkbox-label input{
  width:auto;
}

.booking-form button{
  margin-top:20px;
  border:none;
  cursor:pointer;
  font-size:1rem;
}

.booking-info{
  background:#f8f9fb;
  margin-top:30px;
  padding:20px;
  border-radius:10px;
  text-align:center;
}
.kapcsolat-gyors{
  text-align:center;
  margin:25px 0;
}

.kapcsolat-gyors p{
  margin:10px 0;
}

.kapcsolat-gyors a{
  color:#082b5c;
  text-decoration:none;
  font-weight:bold;
}

.kapcsolat-gyors a:hover{
  text-decoration:underline;
}
.map-section{
  background:#fff;
  padding:40px;
  margin:40px 0;
  border-radius:12px;
  box-shadow:0 0 15px rgba(0,0,0,0.08);
}

.map-section h2{
  text-align:center;
  color:#082b5c;
  margin-bottom:20px;
}

.map-info{
  text-align:center;
  margin:25px 0;
}

.map-info p{
  margin:12px 0;
  font-size:1.1rem;
}
.slider{
  position:relative;
  max-width:900px;
  margin:0 auto;
}

.slider img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:12px;
  display:block;
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:white;
  border:none;
  font-size:30px;
  padding:12px 18px;
  cursor:pointer;
  border-radius:50%;
}

.prev{
  left:15px;
}

.next{
  right:15px;
}

.slider-btn:hover{
  background:rgba(0,0,0,0.8);
}

@media (max-width:768px){

  .slider img{
    height:280px;
  }

}
.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:#082b5c;
  color:white;
  padding:15px;
  text-align:center;
  z-index:9999;
  display:none;
}

.cookie-banner p{
  margin:0 0 10px;
}

.cookie-banner a{
  color:white;
  text-decoration:underline;
}

.cookie-banner button{
  background:white;
  color:#082b5c;
  border:none;
  padding:10px 20px;
  border-radius:6px;
  cursor:pointer;
  font-weight:bold;
}
.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  background:#082b5c;
  color:white;
  padding:15px;
  text-align:center;
  z-index:9999;
  display:none;
}
.ingatlan-kep {
    max-width: 600px;
    width: 100%;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
}
.ingatlan-kep {
    max-width: 550px;
    width: 100%;
    display: block;
    margin: 20px auto;
    border-radius: 12px;
}

.ingatlan-ajanlo {
    text-align: center;
    margin: 40px auto;
}
.ingatlan-kartya {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.ingatlan-kartya img {
  width: 260px;
  border-radius: 12px;
}

.ingatlan-kartya h3 {
  margin-top: 0;
}

@media (max-width: 700px) {
  .ingatlan-kartya {
    flex-direction: column;
    text-align: center;
  }

  .ingatlan-kartya img {
    width: 100%;
    max-width: 420px;
  }
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.kiemelt{
    font-size:28px;
    font-style:italic;
    color:#0b5fa5;
    text-align:center;
    margin:25px 0;
    font-weight:800;
}

.kiemelt{
    font-size:28px;
    font-style:italic;
    font-weight:800;
    color:#0b5fa5;
    text-align:center;
    margin:25px 0;
}
.story-text p {
  font-size: 19px;
  margin-bottom: 0;
}

.kiemelt {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0b5fa5;
  text-align: center;
  margin: 25px 0;
}
.story-teaser img {
  width: 100%;
  max-width: 520px;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
  border-radius: 16px;
}
.valasztas {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 24px;
  margin: 40px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.valasztas h2 {
  color: #0b5fa5;
  font-size: 30px;
  margin-top: 0;
}

.valasztas-szoveg {
  font-size: 19px;
  max-width: 760px;
  margin: 0 auto 30px;
}

.apartmanok {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.kartya {
  background: #f3f7fb;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.10);
}

.kartya img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 15px;
}

.valasztas{
    margin-top:45px;
}

.valasztas h2{
    color:#1f2d3d;
    font-size:28px;
}

.valasztas-szoveg{
    font-size:18px;
    margin-bottom:28px;
}

.apartmanok{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
}

.kartya{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.10);
}

.kartya img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.kartya h3{
    color:#003b7a;
    margin:18px 20px 8px;
}

.kartya p{
    margin:0 20px 18px;
}

.gomb{
    display:inline-block;
    margin:0 20px 24px;
    padding:12px 18px;
    background:#003b7a;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.gomb:hover{
    background:#0b5fa5;
}

@media (max-width: 800px) {
  .apartmanok {
    grid-template-columns: 1fr;
  }

  .kartya img {
    height: auto;
  }
}

.story-teaser-img {
  width: 100%;
  max-width: 520px;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 0 auto 18px;
  border-radius: 16px;
}
.story-teaser > img {
  width: 100% !important;
  max-width: 520px !important;
  height: 300px !important;
  max-height: 300px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto 18px !important;
  border-radius: 16px !important;
}
.ingatlan-ajanlo-kartya{
    display:flex;
    align-items:center;
    gap:30px;
    background:#ffffff;
    border-radius:20px;
    padding:22px;
    margin:40px 0;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.ingatlan-ajanlo-kartya img{
    width:42%;
    border-radius:16px;
    display:block;
}

.ingatlan-ajanlo-szoveg{
    flex:1;
}

.ingatlan-ajanlo-szoveg h2{
    margin-top:0;
    margin-bottom:14px;
    color:#0b5fa5;
    font-size:30px;
}

.ingatlan-ajanlo-szoveg p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:18px;
}

.ingatlan-ajanlo-szoveg .btn{
    display:inline-block;
    background:#0b5fa5;
    color:#fff;
    text-decoration:none;
    padding:12px 24px;
    border-radius:8px;
    font-weight:bold;
    transition:.25s;
}

.ingatlan-ajanlo-szoveg .btn:hover{
    background:#084c84;
}

/* Mobil */

@media (max-width:768px){

.ingatlan-ajanlo-kartya{
    flex-direction:column;
    text-align:center;
}

.ingatlan-ajanlo-kartya img{
    width:100%;
}

}
.vissza-fooldal{
    text-align:center;
    margin:50px 0 20px;
}

.vissza-btn{
    display:inline-block;
    background:#2e8b57;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    transition:0.25s;
}

.vissza-btn:hover{
    background:#256f46;
}