html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Public Sans", sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
    height: 80px;
    background: transparent;
}

.header-inside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 2;
    color: white;
    height: 80px;
    background: #035666;
}

.logo {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
}

.search-bar {
    flex-grow: 1;
    margin: 0 2rem;
    position: relative;
    color: #fff;
}

.search-bar input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 247, 247, 1);
    color: rgb(139, 124, 124);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    color: rgb(139, 124, 124);
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.menu-toggle {
    color: #fff;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.banner {
  position: relative;
  width: 100%;
  height: 400px;
  background-color: #1f374d;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 5rem 2rem 2rem;
  overflow: hidden; 
  margin-top: -70px; 
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0; 
  background: url('../images/banner.jpg') bottom/cover no-repeat;
  opacity: 0.2; 
  z-index: 0;
}

.banner * {
  position: relative;
  z-index: 1; 
}



.banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.start-button {
    padding: 0.8rem 2rem;
    background-color: white;
    color: #003566;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: minmax(150px, auto);
    width: 100%;
    position: relative;
    z-index: 1;
    background: white;
}

.menu-item {
    padding: 2rem;
    color: white;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.menu-item:hover {
    /* transform: translateY(-5px); */
}

.menu-item h2 {
    margin-bottom: 1rem;
}

.menu-1 { 
   background-color: #BAD3C6;
    grid-column: 1 / 3;
    grid-row: 1;
}

.menu-2 { 
    background-color: #B7A6D1;
    grid-column: 3 / 6;
    grid-row: 1;
}

.menu-3 { 
    background-color: #D4B896;
    grid-column: 1 / 3;
    grid-row: 2;
}

.menu-4 { 
    background-color: #C6D1A6;
    grid-column: 3 / 6;
    grid-row: 2;
}

.menu-5 { 
    background-color: #A8B3C4;
    grid-column: 1 / 3;
    grid-row: 3;
}

.menu-6 { 
    background-color: #C9A9A6;
    grid-column: 3 / 6;
    grid-row: 3;
}

.menu-7 { 
    background-color: #A6A6D1;
    grid-column: 1 / 3;
    grid-row: 4;
}

.menu-8 { 
    background-color: #A4BDBC;
    grid-column: 3 / 6;
    grid-row: 4;
}

.menu-9 { 
    background-color: #C9A9A6;
    grid-column: 1 / 3;
    grid-row: 5;
}

.menu-10 { 
    background-color: #A8B3C4;
    grid-column: 3 / 6;
    grid-row: 5;
}

.menu-11 { 
    background-color: #A8BEB3;
    grid-column: 1 / 3;
    grid-row: 6;
}

.menu-12 { 
    background-color: #D1C6A6;
    grid-column: 3 / 6;
    grid-row: 6;
}

.menu-13 { 
    background-color: #A6D1C6;
    grid-column: 1 / 3;
    grid-row: 7;
}

.menu-14 { 
    background-color: #B3A8C4;
    grid-column: 3 / 6;
    grid-row: 7;
}

.faq {
    background-color: #A8B3C4;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.faq a{
    text-decoration: none;
    color: white;
}

.faq h2 {
    margin-bottom: 1rem;
}

.faq p {
    margin-bottom: 2rem;
}

.faq-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: white;
    color: #1a237e;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}
