* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5fb;
}

.section {
  height: 100vh;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/*  POPUP SMALLER */
.cookie-popup {
  position: fixed;  
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 720px;      /* reduced */
  width: 720px;
  background-color: #fff;
  
  padding: 0px;
  text-align: center;
  z-index: 10;
}

.cookie-popup h2 {  
     margin-bottom: 8px;
    color: #385322;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: "Poppins", Sans-serif;
    padding-bottom: 10px;
}




.cookie-popup p {
  font-size: 14px;       /* reduced */
  color: #000000;
  line-height: 1.5;
  margin-bottom: 15px;
}

.cookie-popup .close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  background-color: #ffffff;
  border: none;
  font-size: 26px;       /* slightly smaller */
  cursor: pointer;
}

.cookie-popup .btn {
  display: block;
  width: 85%;
  margin: 8px auto;
  padding: 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  font-size: 1.2rem;     /* reduced */
  line-height: 1.2rem;
  height: 3.8rem;        /* reduced */
  font-weight: 400;
  text-transform: capitalize;
}

.cookie-popup .accept-btn { 
  color: white;
  background-color: #385322;
}



.cookie-popup .accept-btn:hover {
  background-color: #406e1a;
}

.cookie-popup .settings-btn {
  border: 2px solid #385322;
  background-color: white;
  color: #385322;
}

.cookie-popup .settings-btn:hover {
  background-color: white;
}

/* BACKGROUND SECTIONS */
.section-1 {
  background-image: url('img/desk145.jpg');
}

.firs-col {
  padding: 0px;   
  background-image: url('img/img-main3.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat; 
} 

/*  MOBILE */
@media (max-width: 480px) {
    
    .firs-col {
      padding: 0px;   
      background-image: url('img/img-main4.png');
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; 
    }


  .section-1 {
    background-image: url('img/mob145.jpg');
  }

  .cookie-popup {
    width: 90%;
    max-width: 360px;   /* reduced */
  }

  .cookie-popup h2 {
    font-size: 24px;
    padding-bottom: 5px;
  }

  .cookie-popup p {
    font-size: 13px;
  }

  .cookie-popup .btn {
    font-size: 15px;
    padding: 10px;
    height: auto;
    margin: 6px auto;
  }

  .container1 { 
    height: auto !important; align-content: center;
  }

  .firs-col {
    height: 306px;
  }
}

/*  UPDATED OVERLAY (LESS BLUE + LESS BLUR) */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(192 192 192 / 15%);  /* lighter */
  backdrop-filter: blur(2px);          /* softer blur */
  z-index: 5;
}

/* LAYOUT */
.container1 {
  display: flex; 
  flex-wrap: wrap; 
  max-width: 720px;  /* match popup width */
  margin: 0 auto;
  height: 420px;     /* slightly reduced */
}

.col {
  flex: 1 0 0;
  min-width: 150px;
  display: flex;
  padding: 20px;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
}

.container1 > .col:first-child {
  border-right: 1px solid #ccc;
}

@media (max-width: 600px) {
  .col {
    flex-basis: 100%; 
  }
  
  .container1 > .col:first-child {
    border-right: none;
   /* border-bottom: 1px solid #ccc;*/
  }
}