body {
  font-family: var(--font);
}

.site-logo {
  position: relative;
  width: 10rem;
  top: 20px;
  left: 3vw;

  z-index: 20;

}

.language-selector {
  position: relative;
  top: 20px;
  z-index: 20;
  float: right;
  margin-right: 3vw;
}

.header-inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

header.site-header::before{
    content: "";
    position: absolute;
    width: 10rem;
    height: 10rem;
    background: white;
    transform: rotate(45deg);
    top: 0px;
    left: 3vw;
    z-index: 15;
    border-radius: 7px
}

.hero {
  position: relative;
  margin-top: -40px;
  /* important */
}

.hero-title {
  color: #ffffff;
}

.hero-badge {
  background-color: var(--color-main);
  border-radius: 25px;
  padding: 10px;
  letter-spacing: 1.5px;
  font-weight: 500;
}

.hero-button
{
  font-family: Inter, sans-serif;
}



.card-info {
  background: #f5f3f1;
  padding: 80px 28px;
}

.card-info .section-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}

.card-info h2 {
  margin: 0 0 26px;
  color: #1f1f1f;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.card-info p {
  margin: 0 0 24px;
  color: #555;
  font-size: 18px;
  line-height: 1.8;
}

.card-info ul {
  margin: 0 0 28px;
  padding-left: 0;
  list-style: none;
}

.card-info li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 22px;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.card-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  background: #d9043d;
  border-radius: 50%;
}

 .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid var(--color-main);
  border-radius: 5px;
  background: transparent;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: "inter", sans-serif;
}

.card-info .btn-secondary::before {
  content: "→";
  margin-right: 8px;
}

.card-info img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.transport
{
  padding: 0px;
}

.transport .section-heading
{
  background-color: #F5F4F2;
  width: 1180px;
  max-width: calc(100vw - 80px);
  color: black;
  padding: 50px 0px;
  box-sizing: border-box;
  margin: auto;
}

.transport .section-heading a 
{
  color: black;
  text-decoration: underline;

}

.transport .transport-icons
{
  height: clamp(35px, 10vw, 47px);
}

.transport .container
{
  /* padding: 80px 40px; */
  max-width: none !important;
}

.transport .accordion
{
    padding: 80px 40px 40px 40px;
    max-width: 1180px;
    margin: auto;
}

.footer-section
{
  background-color: #F5F4F2;
  padding: 55px 40px 64px 40px;
}

.footer-section .footer-icons
{
  height: clamp(34px, 10vw, 52px);
}

.footer-section a 
{
  text-decoration: underline;
  color: black;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-main);
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

@media (min-width: 1300px) {

  .hero-bg
  {
    object-position: center -130px;
  }
}


@media (max-width: 900px) {

.hero-bg
{
  object-position: left bottom;
}

  .card-info {
    padding: 56px 22px;
  }

  .card-info .section-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .card-info img {
    height: 260px;
  }

  .transport .section-heading{
    margin: 30px !important;
        width: auto!important;
        padding-bottom: 0px !important;
  }

  .transport .accordion
  {
    max-width: none !important;
    padding: 30px !important;
  }

  .contact 
  {
    max-width: none !important;
    margin: auto !important;
    padding: 30px !important;
  }
}

