*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f5f5f5;
}

.navbar{
    width:100%;
    background:#fff;
    border-bottom:1px solid #e5e5e5;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 40px;
    height:72px;

    position:relative;
}

.nav-left{
    display:flex;
    align-items:center;
    gap:40px;
}

.logo img{
    height:34px;
}

.menu{
    display:flex;
    list-style:none;
    gap:28px;
}

.menu a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    transition:.2s;
}

.menu a:hover{
    color:#0067b8;
}

.nav-right{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-right>a{
    text-decoration:none;
    color:#222;
    font-size:15px;

    display:flex;
    align-items:center;
    gap:7px;
}

.nav-right a:hover{
    color:#0067b8;
}

/* Mega Menu */

.mega-dropdown{
    position:relative;
    height:72px;
    display:flex;
    align-items:center;
}

.mega-btn{
    background:none;
    border:none;
    cursor:pointer;
    font-size:15px;
    color:#222;
    display:flex;
    align-items:center;
    gap:8px;
    height:72px;
}

.mega-menu{
    position:absolute;
    top:100%;
    right:0;

    width:900px;

    background:#fff;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:40px;

    padding:35px;

    border:1px solid #e5e5e5;
    border-top:none;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:
        opacity .25s,
        transform .25s,
        visibility .25s;

    z-index:999;
}

.mega-dropdown:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.column h3{
    margin-bottom:18px;
    color:#111;
    font-size:18px;
}

.column a{
    display:block;
    text-decoration:none;
    color:#555;
    margin:12px 0;
    font-size:15px;
}

.column a:hover{
    color:#0067b8;
}

.fa-chevron-down{
    font-size:12px;
}

.hero{
    position: relative;
    width: 100%;
    height: 450px;
    background: url("https://imgur.com/RszFn8y.png") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.65)
    );
}

.hero-content{
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 20px;
}

.hero-content h1{
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p{
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons a{
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:.3s ease;
}

.primary{
    background:#0B1F73;
    color:#f5f5f5;
}

.primary:hover{
    background:#0B1F73;
    transform:translateY(-4px);
}

.secondary{
    border:2px solid #fff;
    color:#fff;
}

.secondary:hover{
    background:#fff;
    color:#000;
}

span{
    background: linear-gradient(90deg, #0B1F73 0%, #79B8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.quick-links{
    width:100%;
    padding:70px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:80px;
    background:#fff;
    flex-wrap:wrap;
}

.quick-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
}



.quick-item a{
    color:#0067B8;
    text-decoration:none;
    font-size:17px;
    font-weight:500;
}



.quick-item:hover a{
    text-decoration:underline;
}

.card-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px;
}

.card {
  width: 250px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding-bottom: 15px;
}

.card img {
  width: 100%;
  height: auto;
}

.card h3 {
  margin: 10px 0 5px;
}

.card p {
  font-size: 14px;
  color: #555;
  padding: 0 10px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn:hover {
  background: #0056b3;
}

.grid {
  display: flex;
  gap: 20px;
  padding: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h2 {
  font-size: 18px;
  margin: 15px 15px 5px;
}

.card p {
  font-size: 14px;
  color: #444;
  margin: 0 15px 15px;
  flex-grow: 1;
}

.btn {
  display: block;
  margin: 15px;
  padding: 10px;
  text-align: center;
  background: #0067b8;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.btn:hover {
  background: #005a9e;
}

.footer {
  background: #e7e4e4;
  color: #333;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #333;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #333;
  transition: 0.2s ease;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: flex-start;
}

.footer-logo .logo {
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

/* BOTTOM RÉSZ */
.footer-bottom {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-col {
    text-align: center;
  }
}