Navbar
.nav-btn {
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  border-radius: 30px;
  background-color: #f1f1f1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn:hover {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
}

Fő stil

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  color: #333;
}

header {
  background: linear-gradient(to right, #0a0f2c, #1a237e);  /* Sötétkék és kék színű átmenet */
  color: white;  /* Fehér szöveg */
  padding: 2rem 0;  /* Felül és alul tágítás */
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

nav {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
  color: #006400;
  font-weight: 500;
  margin: 0 15px;
}

.hero {
  background: url('https://images.unsplash.com/photo-1581093588401-b1d9ab3e3b5d') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero h2 {
  font-size: 3rem;
  font-weight: bold;
}

section {
  padding: 4rem 2rem;
}

.btn-green {
  background-color: #32cd32;
  color: white;
}

.btn-green:hover {
  background-color: #2eb82e;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}


.hero-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.hero {
  background-color: #f4f4f4;
  color: #222;
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  margin: 0 auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #ffc107 0%, transparent 70%);
  opacity: 0.15;
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.15; }
  50% { transform: scale(1.2); opacity: 0.25; }
  100% { transform: scale(1); opacity: 0.15; }
}

.hero h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
}

.hero-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  background-color: #ffc107;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-btn:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}



.why-choose-us {
  padding: 80px 20px;
  background-color: #fafafa;
  margin-top: 60px;
  border-radius: 12px;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background-color: #ffc107;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.why-box {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.why-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.why-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.cta {
  text-align: center;
  margin-top: 40px;
  padding: 40px;
  background-color: #ffc107;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-btn {
  background-color: #333;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e0a800;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .why-box {
    margin-bottom: 20px;
  }

  .cta {
    padding: 30px;
  }
}



.site-footer {
  background-color: #0f172a;
  color: #fff;
  padding: 30px 0;
  font-size: 0.95rem;
}

.site-footer a {
  color: #10b981;
  text-decoration: none;
  margin: 0 5px;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer p {
  margin: 5px 0;
}





.highlight-section {
    background-color: #f0f8ff; /* Halványkék háttér */
    padding: 20px; /* Belso margók hozzáadása */
    border-radius: 10px; /* Lekerekített sarkok */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Finom árnyék a szakasz körül */
    margin: 20px 0; /* Térköz a többi szakasztól */
}

.highlight-section h2 {
    text-align: center;
    margin-bottom: 20px; /* Ha szeretnéd, hogy legyen egy kis távolság alatta */
}


.highlight-section h3 {
    font-size: 1.8rem; /* Néhány ponttal nagyobb cím */
    color: #0073e6; /* Kék színű cím */
    text-align: center; /* Középre igazított cím */
    margin-bottom: 15px;
}

.highlight-section p {
    font-size: 1rem;
    line-height: 1.6; /* Könnyebben olvasható szöveg */
    color: #333; /* Sötétszürke szöveg */
    text-align: center; /* Középre igazított szöveg */
}



.highlight-section {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    color: #003366;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.item-list {
    list-style: none;
    padding-left: 0;
}

.item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.btn-info {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.btn-info:hover {
    background-color: #4682b4;
}

.additional-info {
    margin-top: 10px;
    background-color: #e6f7ff;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.contact-note {
    text-align: center;
    font-size: 1.2rem;
    color: #003366;
    margin-top: 30px;
}



.not-included-section .alert {
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}







  .alert.clickable {
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .alert.clickable:hover {
    background-color: #f8d7da;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.3);
  }

  .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .toggle-icon.rotate {
    transform: rotate(180deg);
  }

  .additional-info {
    display: none;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #dc3545;
    border-left: 5px solid #dc3545;
    border-radius: 8px;
  }
