/* Passport style for second image and text */
.passport-bio {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.passport-img {
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Ensure passport image uses consistent normal size and doesn't grow */
.passport-stapled .passport-img,
.passport-img {
  width: 110px !important;
  height: 140px !important;
  max-width: none !important;
  flex: 0 0 auto;
}
.passport-text {
  flex: 1;
}

/* Stapled passport image style */
.passport-stapled{
  position: relative;
  display: inline-block;
}
.passport-stapled .passport-img{
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transform: rotate(-3deg);
  display: block;
}
.passport-stapled .staple{
  position: absolute;
  top: -8px;
  left: 8px;
  width: 22px;
  height: 8px;
  background: linear-gradient(180deg,#cfcfcf,#9e9e9e);
  border-radius: 2px;
  transform: rotate(-18deg);
  box-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

@media (max-width: 600px){
  .passport-stapled .passport-img{ transform: rotate(0); width:90px; height:110px; }
  .passport-stapled .staple{ display:none; }
}

@media only screen and (max-width: 768px) {
  .passport-bio {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
  .passport-img {
    width: 90px;
    height: 110px;
    margin-right: 10px;
  }
  .passport-text {
    font-size: 13px;
  }
}

@media only screen and (max-width: 480px) {
  .passport-bio {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .passport-img {
    width: 80px;
    height: 100px;
    margin: 0 auto;
    display: block;
  }
  .passport-text {
    text-align: center;
    font-size: 12px;
    margin: 0 2px;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
/* 1. Prevent the whole page from leaking out */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
        .body{
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      font-family: "Playfair Display", serif;
      }
.page-holder {
    margin: 30px 50px;
    padding: 20px 0;
}
.page-holder p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}
.page-holder h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: rgb(200, 7, 7);
}
.nav-holder{
    display: flex;
    margin-top: 10px;
    margin-left: 50px;
    margin-right: 50px;
    gap: 5px;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    left: 0;
    width: calc(100% - 100px);
    z-index: 100;
    transition: background-color 0.3s ease;
    padding: 15px 20px;
}
.nav-holder a{
    text-decoration: none;
    color: #000;
    font-family: 'Playfair Display', serif;
}
.Owner{
    font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 400;
            color: #000;
        }
.Owner a{
      color: #000;
    }
.Owner a:hover{
            color: #000;
        }
.middle-links{
    display: flex;
    gap: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-family: 'Playfair Display', serif;
}

.middle-links a{
      color: #000;
      text-decoration: none;
    }

.middle-links a:hover{
      text-decoration: underline;
      color: rgb(200, 7, 7);
      text-decoration-thickness: 2px;
      text-underline-offset: 5px;
      animation: slideUnderline 0.3s ease-out;
    }
    @keyframes slideUnderline {
      from { text-underline-offset: 0; }
      to { text-underline-offset: 5px; }
    }
    
    @media (min-width: 997px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0px;
        border-radius: 0;
        margin-right: 20px;
    }
    }
.dropdown-menu a{
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}
.dropdown-menu a:hover{
    color: rgb(200, 7, 7);
    text-decoration: underline;
        }


.dropdown-item {
    color: #000; 
    text-decoration: none;
    display: block;
    font-family: 'Playfair Display', serif;
    padding: 10px;
    width: 20px;
    gap: -40px;
    margin-right: 30px;
}

.dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background: rgb(200, 7, 7);
}
.social-links {
    display: flex;
    align-items: center;
}
.social-links a{
    margin-left: 15px;
    margin-right: 15px;
}
.social-links a svg{
    width: 24px;
    height: 24px;
    fill: #000;
    transition: fill 0.3s ease;
}
.social-links a:hover svg path{
    fill: rgb(200, 7, 7);
}
.topic {
    margin-top: 50px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 100;
    color: rgb(200, 7, 7);
}
.subtopic {
    margin-top: 0;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #666;
}
.b-head{
  margin-top: 60px;
  display: flex;
  margin-left: 0;
}
.b-head h1{
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 20px;
}
.b-head hr{
    display: inline-block;
    color: #000;
    width: 400px;
}
.body1{
    width: 1150px;
    margin-right: 50px;
    margin-left: 50px;
    margin-top: 50px;
}
.books{
    margin-top: 30px;
    grid-row: 3;
    column-gap: 20px;
    gap: 10px;
    border-radius: 20px;
    display: flex;
}
.books img{
    width: 100%;
    border: 2px solid black;
}

/* --- HAMBURGER STYLING --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;    
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}
.hamburger span:hover{
  background-color: rgb(200, 7, 7);
}
  .middle-links3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #fff;
  }
  .middle-links3 a {
    color: #fff;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
  }
  .middle-links3 a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
  }
  .middle-links3 .dropdown-item {
    color: #000;
  }
.with{
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.with .first-text {
  order: 2;
  flex: 1;
  min-width: 300px;
}
.with .image-section {
  order: 1;
  flex: 0 0 360px;
  max-width: 100%;
}

/* passport inline next to main text */
.with .passport-bio-inline{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}
.with .passport-bio-inline .passport-img{
  width: 110px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #ccc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

@media (min-width: 900px){
  .with{ flex-direction: row; }
  .with .first-text { order: 1; }
  .with .image-section { order: 2; }
  .with .image-section img{ max-width: 360px; }
}
.with .image-section img {
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
    .bio{
        margin-top: 50px;
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        color:  rgb(200, 7, 7);
        font-weight: 100;
        margin-left: 0;
        margin-bottom: 40px;
    }
    
  .first-text p{
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: lighter;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 700px;
  }
  .with img{
    display: block;
  }
  
.red4 {
    width: 100%;
    margin: 0;
    left: auto;
    right: auto;
}

.red4 .copyright {
    text-align: center;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    color: #c6c5c5;
    margin-top: 40px;
    margin-bottom: 10px;
}

.red4 .location {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #c6c5c5;
    margin-top: 10px;
    text-align: center;
}

.red4 .policies {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #c6c5c5;
    margin-top: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.red4 .policies a {
    color: #c6c5c5;
    text-decoration: none;
}

.red4 .policies a:hover {
    color: rgb(255, 255, 255);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    animation: slideUnderline 0.3s ease-out;
}

.red4 .policies hr {
    border-color: rgba(255,255,255,0.3);
    margin: 0;
    padding: 0;
    display: none;
}

.red4 .searchbar {
    margin-top: 20px;
    margin-bottom: 20px;
}

.red4 .searchbar form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.red4 .searchbar input[type="text"] {
    width: 600px;
    padding: 1px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 16px;
}

.red4 .searchbar button {
    padding: 1px 1px;
    border: 1px solid #ccc;
    border-left: none;
    border-radius: 0 5px 5px 0;
    background-color: rgb(200, 7, 7);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.red4 .searchbar button:hover {
    background-color: rgb(150, 5, 5);
}

.red4 .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.red4 .footer-social a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.red4 .footer-social a svg {
    color: #fff;
    width: 20px;
    height: 20px;
    fill: #fff;
}

.red4 .footer-social a:hover svg path {
    fill: #000000;
}
  
/* Center the "Designed by" credit in the footer */
.red4 .designer {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 14px;
  color: #f0eaea;
  font-size: 14px;
}
.red4 .designer a { color: #fff; text-decoration: underline; }
.red4 .designer a:hover { color: #ffe5e5; }
  
@media only screen and (max-width: 768px) {
  .body {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-holder {
    margin: 15px 5px;
    padding: 10px;
  }
  .page-holder h3 {
    font-size: 20px;
    margin-top: 20px;
  }
  .topic {
    font-size: 28px;
    margin-top: 20px;
  }
  .subtopic {
    font-size: 18px;
  }
  .nav-holder {
    padding: 10px 15px;
  }
  .nav-holder .Owner {
    flex-shrink: 0;
    margin-right: 40px;
  }
  .bio {
    font-size: 28px;
    margin-left: 15px;
  }
  .b-head {
    margin-left: 15px;
  }
  .with {
    display: block;
    gap: 15px;
  }
  .first-text {
    width: 100%;
    display: block;
  }
  .image-section {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    margin-bottom: 30px;
  }
  .image-section img {
    max-width: 50%;
    height: auto;
    display: inline-block;
  }
  .ptext {
    font-size: 14px;
    line-height: 1.6;
    margin-left: 15px;
    margin-right: 15px;
  }
  .social-links a:nth-child(4) {
    display: none;
  }
  .social-links2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 996px) {
  body{
    width: 100%;

  }
  .body{
    align-items: center;
    padding: 0;
    top: 0;
    left: 0;
    font-family: "Playfair Display", serif;
  }
  .page-holder {
    margin: 20px 10px;
    padding: 15px;
  }
  .page-holder h3 {
    font-size: 22px;
    margin-top: 25px;
  }
  .topic {
    font-size: 32px;
    margin-top: 25px;
  }
  .subtopic {
    font-size: 22px;
  }
      .Owner{
      line-height: 20px;
      font-size: 16px;
      font-weight: 400;
      color: #000;
    }

    .hamburger { 
      display: block;
      position: relative;
      padding: 0;
      margin-top: 25px;
      width: 30px;
      font-weight: 900;
      line-height: 10px;
      align-items: end;
      text-align: end;
      justify-items: end;
      justify-content: end;
    }
    .hamburger span{
      background-color: #000;

    }
    .hamburger span:hover{
      background-color:  rgb(200, 7, 7);

    }
    /* Top bar: rotate 45 degrees */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    /* Middle bar: fade out */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    /* Bottom bar: rotate -45 degrees */
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .middle-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        color: #000;
        line-break: strict;
        background: #fff;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 0;
        z-index: 999;
    }
    .middle-links a{
      text-decoration: none;
      color: #000000;
      font-family: 'Playfair Display', serif;
      font-size: 20px;
    }
    .middle-links.active { display: flex; }
    .middle-links .dropdown-menu,
    .middle-links3 .dropdown-menu {
      position: static;
      float: none;
      transform: none;
      border: none;
      background: transparent;
      box-shadow: none;
      margin: 5px 0 0;
      padding: 0;
    }
    .middle-links .dropdown-menu.show,
    .middle-links3 .dropdown-menu.show {
      display: block;
    }
    .middle-links3 {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .dropdown-item a{
      color: #000;
    }
.dropdown-menu a{
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}
.dropdown-menu a:hover{
    color: rgb(200, 7, 7);
    text-decoration: underline;
        }

.dropdown-item {
    color: #000; 
    text-decoration: none;
    display: block;
    font-family: 'Playfair Display', serif;
    padding: 10px;
    width: 20px;
    margin-right: 30px;
}

.dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background: rgb(200, 7, 7);
}


    .social-links{ display: flex; justify-content: center; flex-wrap: wrap; }
    .social-links a{ margin-left: 3px; margin-right: 3px; }
    .social-links svg{ display: inline-flex; width: 16px; height: 16px; }
    .social-links2{ display: flex; justify-content: center; align-items: center; flex-wrap: wrap; width: 100%; }
    .social-links2 a{ margin-left: 5px; margin-right: 5px; }
    .social-links2 svg{ display: inline-flex;
      top: 0;
      padding: 0;
      width: 30px;
      align-items:center;
      justify-content: center;
      margin-bottom: 20px;

    }
    .se{
      margin-top: 150px;
      width: 100%;
      margin-right: 0;
      margin-left: 0;
      height: auto;
    }
    .combo{
      display: inline;
      
    }
    .text{
      margin-top: -90px;
      text-align: center;
    }
    .text h2{
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight:300;
    }
    .text p{
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      font-weight: lighter;
    }
    .text button{
      padding: 5px 10px;
      border-radius: 2px;
      margin-top: 22px;
      margin-bottom: 0;
    }
    .combo img{
      margin-top: -80px;
      margin-bottom: 30px;
    }
    .combo2{
      display: inline;
    }
    .text2{
      margin-top: -90px;
      text-align: center;
    }
    .text2 h2{
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      font-weight:300;
    }
    .text2 p{
      font-family: 'Playfair Display', serif;
      font-size: 13px;
      font-weight: lighter;
    }
/* Bikkurim page specific variables and styles */
/* (Bikkurim styles moved to public/bikkurim.css) */
    .text2 button{
      padding: 3px 10px;
      align-items: center;
      border-radius: 2px;
      margin-top: 22px;
      margin-bottom: 0;
    }
    .red4{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: auto;
      padding: 25px 15px;
      margin: 0;
    }
    .red4 .searchbar {
      margin-bottom: 20px;
      width: 100%;
    }
    .red4 .searchbar form {
      width: 90%;
      max-width: 350px;
    }
    .red4 .copyright {
      font-size: 12px;
      margin: 10px 0;
    }
    .red4 .location {
      font-size: 12px;
      margin: 8px 0;
      padding: 0 15px;
    }
    .red4 .policies {
      flex-direction: column;
      gap: 10px;
      margin: 15px 0;
    }
    .red4 .footer-social {
      gap: 10px;
      margin-top: 15px;
    }
    .red4 .footer-social a svg {
      width: 20px;
      height: 20px;
    }
    .red4 .middle-links3 a{
      display: flex;
      flex-wrap: nowrap;
      text-decoration: none;
      color: #fff;
      font-family: 'Playfair Display', serif
    }
    .middle-links3{
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-left: 0;
      text-align: center;
    }
    .middle-links3 .dropdown-menu .dropdown-item a{
      color: #000;
      text-decoration: none;
      font-family: 'Playfair Display', serif
    
    }
    .body1{
        margin-left: -30px;
        margin-right: 30px;
        padding: 0;
        top: 0;
        left: 0;
        font-family: "Playfair Display", serif;
    }
    .with {
      gap: 24px;
    }
    .passport-stapled .staple {
      z-index: 5;
    }
    .b-head h1{
        font-size: 17px;
        font-weight: 100;
    }
    .b-head hr{
        width: 200px;
        margin-left: 10px;
    }
    .bio{
        font-size: 25px;
        font-weight: 100;
    }
    .with{
        width: 100%;
        display: block;
        margin-right: 0;
    }
    .first-text {
        width: 100%;
        display: block;
    }
    .image-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    .first-text p{
        display: block;
        font-size: 11px;
        font-weight: lighter;
        padding-right: 0;
        margin-left: 15px;
        margin-right: 15px;
        width: 100%;
    }
    .image-section img{
        display: inline-block;
        padding-left: 0;
        width: 50%;
        max-width: 50%;
        height: auto;
        align-items: center;
        justify-content: center;
    }
}

/* Biography Text Styling */
.ptext {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.ptext:first-letter {
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(200, 7, 7);
}

/* Short Biography */
.short-bio {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid rgb(200, 7, 7);
    border-radius: 5px;
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toggle Button */
.toggle-short-bio {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(200, 7, 7);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.toggle-short-bio:hover {
    background-color: #c80707;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(200, 7, 7, 0.3);
}

.toggle-short-bio:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(200, 7, 7, 0.3);
}

.toggle-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.toggle-short-bio.active .toggle-icon {
    transform: rotate(180deg);
}

/* First Text Container */
.first-text {
    flex: 1;
    padding-right: 30px;
}

/* Image Section */
.image-section {
    flex: 0 0 300px;
}

.image-section img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.02);
}

/* With Container */
.with {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Bio Heading */
.bio {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 100;
    color: rgb(200, 7, 7);
    margin: 40px 0 30px 0;
    border-bottom: 2px solid rgb(200, 7, 7);
    padding-bottom: 15px;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .with {
        flex-direction: column;
        gap: 30px;
    }

    .first-text {
        padding-right: 0;
    }

    .image-section {
        flex: 1;
        width: 100%;
    }

    .ptext {
        font-size: 14px;
    }

    .bio {
        font-size: 36px;
    }

    .toggle-short-bio {
        width: 100%;
        justify-content: center;
    }
}

/* Phone screens */
@media only screen and (max-width: 480px) {
    .body {
        margin-left: 10px;
        margin-right: 10px;
    }
    .nav-holder {
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
    }
    .bio {
        font-size: 28px;
        margin-left: 10px;
    }
    .ptext {
        font-size: 13px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .first-text p {
        width: auto;
        margin-left: 10px;
        margin-right: 10px;
    }
    .page-holder {
        margin: 10px 5px;
        padding: 10px;
    }
    .red4 {
        margin: 0;
        width: 100%;
        padding: 20px 15px;
    }
    .red4 .searchbar input[type="text"] {
        width: 180px;
    }
    .red4 .middle-links3 {
        flex-direction: column;
        gap: 8px;
    }
    .red4 .middle-links3 a {
        font-size: 14px;
    }
    .red4 .copyright, .red4 .location {
        font-size: 12px;
    }
}

/* Very Large Screens */
@media only screen and (min-width: 1400px) {
    .body {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    .nav-holder {
        margin-left: 80px;
        margin-right: 80px;
        width: calc(100% - 160px);
    }
    .bio {
        font-size: 56px;
        margin-left: 80px;
    }
    .ptext {
        font-size: 18px;
    }
    .first-text p {
        font-size: 17px;
        width: 800px;
        margin-left: 80px;
    }
    .with {
        gap: 60px;
    }
    .image-section img {
        max-width: 450px;
    }
    .page-holder {
        margin: 40px 80px;
        padding: 30px;
    }
    .red4 {
        margin: 0;
        width: 100%;
        padding: 45px 80px;
    }
    .red4 .searchbar input[type="text"] {
        width: 700px;
    }
}