body {
    font-family: "Montserrat", serif;
    background-color: #F0F3F5;
    margin: 0;
    padding: 0;
    height: 100vh;
    scroll-behavior: smooth;
}

.navbar {
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 4px;
}

.logo h1 {
    --c: #0B7A75;
    --s: 5px;
    color: #333333;
    font-size: 25px;
    margin: 0;
    font-weight: 900;
    padding-bottom: 10px;
    background: 
    conic-gradient(from 135deg at top,var(--c) 90deg,#0000 0) 
      left 0 bottom var(--s)/calc(2*var(--s)) var(--s) repeat-x,
    conic-gradient(from -45deg at bottom,var(--c) 90deg,#0000 0) 
      left var(--s) bottom 0/calc(2*var(--s)) var(--s) repeat-x;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #333333;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
}

.nav-links a img {
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
    transition: all 0.3s ease-out;
}

.nav-links a:hover {
    font-weight: 700;
}

.nav-links a:hover img {
    rotate: -45deg;
}

.hero {
    padding: 50px 200px;
}

.hero-content {
    /* max-width: 700px; */
}

.hero h2 {
    color: #333333;
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    color: #666666;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.buttons a {
    background-color: #0B7A75;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 20px 20px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.buttons a:last-child {
    gap: 10px;
    background-color: #F0F3F5;
    color: #333333;
    font-weight: 800;
}

.buttons a:last-child:hover {
    background-color: #b4b6b7;
}

.buttons a:hover {
    background-color: #074e4a;
}

.buttons a:hover img {
    rotate: -45deg;
}

.buttons a img {
    height: 20px;
    vertical-align: middle;
    transition: all 0.3s ease-out;
}

.buttons a:last-child img {
    height: 30px;
    vertical-align: middle;
}

.about {
    margin: 50px 150px;
    padding: 50px;
    border: 10px dashed #333333;
}

.about h1 {
    color: #333333;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about ul {
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq {
    margin: 50px 150px;
    padding: 50px;
}

.faq h1 {
    color: #333333;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    border-bottom: 1px solid #333;
    overflow: hidden;
}

.accordion-header {
    padding: 15px;
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    transition: background-color 0.3s ease;
    color: #333333;
}

.accordion-content {
    padding: 15px;
    display: none;
    font-size: 18px;
    color: #666666;
}

.accordion-content p {
    margin: 0;
}

@media screen and (max-width: 700px) {
    .logo h1 {
        --c: #0B7A75;
        --s: 4px;
        color: #333333;
        font-size: 25px;
        margin: 0;
        font-weight: 900;
        padding-bottom: 0px;
        background: none;
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .nav-links a span {
        display: none;
    }

    .hero {
        padding: 20px;
    }

    .hero h2 {
        font-size: 60px;
    }

    .about {
        margin: 20px;
        padding: 20px;
    }

    .about img {
        width: 100%;
    }

    .faq {
        margin: 20px;
        padding: 20px;
    }
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.popup .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.popup .close-btn:hover {
  color: #ff4d4d;
  }