* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #fbfff8, #eef8e8);
  color: #102015;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  width: 94%;
  margin: 25px auto;
  padding: 14px 25px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e2eadf;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.logo-circle {
  width: 36px;
  height: 36px;
  background: #5aad36;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #6d7c6b;
  font-size: 15px;
}

.join-button {
  background: #5aad36;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
}

/* HERO */
.hero {
  text-align: center;
  padding: 55px 20px 30px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
  max-width: 850px;
  margin: 0 auto 25px;
  font-weight: 800;
  color: #07140c;
}

.hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 19px;
  color: #6f7d70;
}

.hero-buttons {
  margin-top: 35px;
}

.primary-button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.primary-button:hover {
  background-color: #1d4ed8;
}

.secondary-button {
  background-color: #4f8f3a;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 28px;
  font-weight: 600;
  cursor: pointer;
}

.secondary-button:hover {
  background-color: #3f7530;
}
.hero-image {
  width: 58%;
  margin-top: 55px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* SECTIONS */
.section {
  padding: 80px 8%;
  text-align: center;
}

.section h2 {
  font-size: 40px;
  margin-bottom: 15px;
  color: #102015;
}

.section > p {
  color: #6f7d70;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cards-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.card,
.restaurant-card {
  background: white;
  padding: 35px 25px;
  border-radius: 22px;
  border: 1px solid #e2eadf;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 250px;
  max-width: 330px;
  text-align: left;
}

.card h3,
.restaurant-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  color: #102015;
}

.card p,
.restaurant-card p {
  color: #6f7d70;
}

.tags {
  margin-top: 15px;
}

.tag {
  display: inline-block;
  background-color: #e8f7df;
  color: #4b982e;
  padding: 6px 12px;
  border-radius: 20px;
  margin: 5px 5px 0 0;
  font-size: 14px;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 35px;
  color: #6f7d70;
  background: white;
  margin-top: 50px;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-image {
    width: 90%;
  }

  .navbar {
    width: 92%;
  }
}
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  margin-top: 50px;
  text-align: left;
}

.column-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #102015;
}

.info-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e2eadf;
  border-radius: 18px;
  padding: 30px;
  margin-bottom: 25px;
  min-height: 150px;
}

.icon {
  font-size: 24px;
  color: #5aad36;
  display: inline-block;
  margin-bottom: 18px;
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #102015;
}

.info-card p {
  color: #6f7d70;
  font-size: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
  text-align: left;
}

.feature-card {
  display: flex;
  gap: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e2eadf;
  border-radius: 18px;
  padding: 30px;
  min-height: 150px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #102015;
}

.feature-card p {
  color: #6f7d70;
  font-size: 15px;
}

@media (max-width: 900px) {
  .two-columns {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}/* MISSION SECTION */
.mission-section {
  padding: 90px 8%;
}

.mission-content {
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.mission-text h2 {
  font-size: 44px;
  color: #102015;
  margin-bottom: 22px;
}

.mission-text p {
  font-size: 18px;
  color: #6f7d70;
  line-height: 1.7;
  margin-bottom: 24px;
}

.mission-main {
  color: #1f2937 !important;
  font-size: 21px !important;
}

.mission-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
  .mission-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .mission-text h2 {
    font-size: 36px;
  }

  .mission-image img {
    height: 280px;
  }
}
/* BENEFITS SECTION */
.benefits-section {
  padding: 90px 8%;
  text-align: center;
}

.benefits-section h2 {
  font-size: 42px;
  color: #102015;
  margin-bottom: 10px;
}

.benefits-subtitle {
  color: #6f7d70;
  font-size: 18px;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e2eadf;
  border-radius: 20px;
  padding: 35px 25px;
  min-height: 180px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.benefit-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 15px;
  color: #5aad36;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #102015;
}

.benefit-card p {
  font-size: 15px;
  color: #6f7d70;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
/* FOOTER */
.footer {
  background: #ffffff;
  padding: 70px 8% 20px;
  border-top: 1px solid #e2eadf;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand p {
  margin-top: 15px;
  color: #6f7d70;
  font-size: 15px;
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #102015;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #6f7d70;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links p {
  color: #6f7d70;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #5aad36;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #e2eadf;
  color: #6f7d70;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 15px auto;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #1f2933;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  
.benefits-section {
  padding: 70px 40px 100px;
  background: #ffffff;
  text-align: center;
}

.benefits-section h2 {
  font-size: 48px;
  font-weight: 800;
  color: #102019;
  margin-bottom: 12px;
}

.benefits-subtitle {
  font-size: 20px;
  color: #6f7a73;
  margin-bottom: 65px;
}

.benefits-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.benefit-card {
  height: 230px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 14px;
  padding: 45px 35px 35px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.03);
}

.benefit-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #f1f8ec;
  color: #2f6b2f;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #16231c;
  margin-bottom: 14px;
}

.benefit-card p {
  width: 310px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.45;
  color: #6b7280;
}

.benefit-card:nth-child(1) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.benefit-card:nth-child(2) {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.benefit-card:nth-child(3) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.benefit-card:nth-child(4) {
  margin-top: 28px;
  grid-column: 1 / 2;
}

.benefit-card:hover {
  transform: none;
}

@media (max-width: 900px) {
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-card,
  .benefit-card:nth-child(1),
  .benefit-card:nth-child(2),
  .benefit-card:nth-child(3),
  .benefit-card:nth-child(4) {
    border: 1px solid #eeeeee;
    border-radius: 14px;
    margin-top: 0;
    grid-column: auto;
  }
}
.container {
  text-align: center;
  margin-top: 80px;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin: 10px 0;
  font-size: 18px;
}

.primary-button {
  background-color: #2563eb !important;
  color: white !important;
  border: none !important;
}

.primary-button:hover {
  background-color: #1d4ed8 !important;
}

.secondary-button {
  background-color: #4f8f3a !important;
  color: white !important;
  border: none !important;
}

.secondary-button:hover {
  background-color: #3f7530 !important;
}
.nav-links a {
  font-weight: 700 !important;
}
.myallergen-hero {
  background: #003b95;
  color: white;
  padding: 85px 60px 70px;
  position: relative;
}

.hero-left {
  max-width: 1150px;
  margin: 0 auto;
}

.hero-left h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 20px;
  color: white;
}

.hero-left p {
  font-size: 22px;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 34px;
  color: white;
}

.hero-search {
  max-width: 1150px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 260px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.search-box-item {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid #e1e8e3;
  color: #15231b;
}

.circle-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #1f7a35;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.search-box-item label {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 7px;
  color: #15231b;
}

.search-box-item input,
.search-box-item select {
  border: none;
  outline: none;
  font-size: 15px;
  color: #6b7280;
  background: transparent;
  width: 100%;
}

.hero-search-button {
  height: 76px;
  border: none;
  border-radius: 8px;
  background: #003b95;
  color: white;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.hero-search-button:hover {
  background: #002f78;
}

.hero-safety {
  max-width: 1150px;
  margin: 24px auto 0;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

@media (max-width: 900px) {
  .myallergen-hero {
    padding: 60px 20px;
  }

  .hero-left h1 {
    font-size: 42px;
  }

  .hero-search {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-box-item {
    border-right: none;
    border-bottom: 1px solid #e1e8e3;
    padding: 14px;
  }

  .hero-search-button {
    height: 60px;
  }
}