* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    font-family: "Raleway", sans-serif;

}

body {
    font-family: "Raleway", sans-serif;
    margin: 0;
    padding: 0;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  min-height: 70vh;
  padding: 80px 20px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-text a {
  display: inline-block;
  padding: 20px 40px;
  background-color: #0d7000;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-text a:hover {
  background-color: #ff4757;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
    min-height: 60vh;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}


.upper-header-list a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.upper-header-list img {
  width: 28px;
}

.hero a:hover,
.hero a:focus {
  outline: none;
}

header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #0d7000;
    position: relative;
    z-index: 1000;
}

header a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 21px;
}

.upper-header ul {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  gap: 30px;
  padding: 10px;
  border-bottom: 2px solid white;
}

.upper-header ul a{
  color: rgb(0, 0, 0);
  font-weight: 700;
} 

@media (max-width: 947px) {
  .upper-header {
    display: none;
  }
}

header img {
  width: 150px;
    height: 150px;
    margin-right: 10px;
}

header .burger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header-nav li {
    position: relative;
}

.header-nav a {
    padding: 10px;
    display: block;
}

.header-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #8f3e2a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    border-radius: 15px;
    z-index: 999;
    flex-direction: column;
}

.menu-item:hover .dropdown {
    display: block;
}

.dropdown li a {
    padding: 10px 15px;
    white-space: nowrap;
}

.header-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.header-info li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

@media (max-width: 889px) {
    .header-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0d7000;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
    }

    .header-nav.active {
        display: flex;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .burger {
        display: block;
        color: white !important;
    }

    .menu-item .dropdown {
        display: none;
        flex-direction: column;
        position: static;
        box-shadow: none;
        padding-left: 15px;
        border-left: 2px solid #eee;
    }

    .menu-item.open .dropdown {
        display: flex;
    }
}

@media (max-width: 768px) {
    header .burger {
        display: block;
    }
}




.about {
  max-width: 1600px;
  margin: 5rem auto;
  padding: 1rem 1.5rem;
  color: #2a5d34;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 450px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 1.5rem;
}

.about-text a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #0d7000;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}


.about-image {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .about-text,
  .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

#how-to-order {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  line-height: 1.6;
}

#how-to-order h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #000000;
}

#how-to-order p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #000000;
}

.how-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

#how-to-order a {
  display: inline-block;
  margin: 10px 15px;
  padding: 12px 25px;
  background-color: #0d7000;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

#how-to-order a:hover {
  background-color: #1f634d;
  transform: translateY(-2px);
}

#how-to-order ol {
  counter-reset: step-counter;
  margin: 0 auto 40px;
  padding: 0;
  max-width: 900px;
}

#how-to-order ol li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 60px;
  background: #f9f9f9;
  border-left: 4px solid #0d7000;
  border-bottom: 4px solid #0d7000;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

#how-to-order ol li:hover {
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

#how-to-order ol li h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #000000;
}

#how-to-order ol li p {
  font-size: 1rem;
  color: #000000;
}

#how-to-order aside {
  background-color: #0d700060;
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
}

#how-to-order aside h4 {
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 15px;
}

#how-to-order aside ul {
  list-style: none;
  padding: 0;
}

#how-to-order aside ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

#how-to-order aside ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #ffffff;
}

#how-to-order section details {
  background-color: #f9f9f9;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#how-to-order section details[open] {
  background-color: #0d700060;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#how-to-order section summary {
  font-weight: 600;
  color: #000000;
  font-size: 1.1rem;
  list-style: none;
}

@media (max-width: 768px) {
  #how-to-order ol li {
    padding-left: 50px;
  }

  #how-to-order ol li::before {
    left: -25px;
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  #how-to-order a {
    padding: 10px 20px;
    margin: 8px;
  }
}

@media (max-width: 480px) {
  #how-to-order h2 {
    font-size: 2rem;
  }

  #how-to-order ol li {
    padding-left: 45px;
  }

  #how-to-order ol li::before {
    width: 28px;
    height: 28px;
  }
}


.form-list img {
  width: 20px;
  height: 20px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.form-list li h3 {
  display: flex;
  gap: 8px;
  align-items: baseline;
  color: #000000;
}

.contact {
  margin: 5rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #fdfcfb, #056d00);
  border-radius: 24px;
  max-width: 1400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #000000;
  text-align: center;
  letter-spacing: -0.5px;
}

.contact p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
  color: #000000;
}

.form-container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

label {
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.9rem 1.2rem;
  border: 2px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #4cafef;
  box-shadow: 0 0 8px rgba(76, 175, 239, 0.4);
  outline: none;
}

button[type="submit"] {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #0d7000;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}


.form-text {
  flex: 1 1 350px;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-text:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.form-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form-list h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.3rem;
}

.form-list p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .form-container {
    flex-direction: column;
    gap: 2rem;
  }

  form,
  .form-text {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 3rem 1rem;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact p {
    font-size: 1rem;
  }

  button[type="submit"] {
    font-size: 1rem;
    padding: 0.9rem;
  }
}


.cta {
  padding: 3rem 1.5rem;
  text-align: center;
  margin: 3rem auto;
  background: #006500;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: #ffffff;
}

.cta .btn {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta .btn:hover {
  background-color: #4a871f;
  transform: translateY(-3px);
}

.cta .btn:active {
  background-color: #3c6e18;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .cta h2 {
    font-size: 1.6rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta .btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}


.map {
  margin-top: 5rem;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  border-radius: 12px;
}

@media (max-width: 600px) {
  .map iframe {
    height: 300px;
  }
}

footer {
  background: #0d7000;
  color: #f1f1f1;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 20px;
  gap: 20px;
}

.footer-logo img {
  max-height: 120px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #66cc99;
}

.footer-privacy {
  margin-top: 10px;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  color: #aaa;
  margin-top: 15px;
  border-top: 1px solid #333;
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 20px;
  }
}


.offer {
  max-width: 1500px;
  margin: 3rem auto;
  padding: 4rem 2rem;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
}

.offer h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  color: #000000;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.offer p {
  max-width: 750px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
  line-height: 1.7;
  color: #000000;
  text-align: center;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.offer-list li {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  max-width: 800px;
}

.offer-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.offer-list img {
  width: 100px;
  height: 100px;
  margin-bottom: 1.2rem;
  object-fit: cover;
}

.offer-list h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #000000;
  font-weight: 700;
}

.offer-list p {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  max-width: 400px;
  flex-grow: 1;
}

.offer-list a {
  display: inline-block;
  text-decoration: none;
  background-color: #0d7000;
  color: #ffffff;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
  font-size: 1rem;
}

.offer-list a:hover {
  background: linear-gradient(135deg, #0077ff, #004bb5);
  transform: scale(1.07);
}

@media (max-width: 768px) {
  .offer {
    padding: 3rem 1.5rem;
  }

  .offer h2 {
    font-size: 2rem;
  }

  .offer p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .offer-list {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .offer {
    padding: 2.5rem 1rem;
  }

  .offer h2 {
    font-size: 1.6rem;
  }

  .offer p {
    font-size: 0.95rem;
  }

  .offer-list li {
    padding: 1.5rem 1rem;
  }

  .offer-list img {
    width: 80px;
    height: 80px;
  }

  .offer-list h3 {
    font-size: 1.2rem;
  }
}

.portfolio {
  padding: 80px 20px;
  background-color: #fafafa;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000000;
}

.portfolio-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto 15px;
}

.portfolio p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 40px;
  color: #000000;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.portfolio-item figure {
  margin: 0;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  height: 296px;
  display: block;
  border-bottom: 1px solid #eee;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 20px;
  text-align: left;
}

.portfolio-content h3 {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.portfolio-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  text-align: center;
}

.portfolio-footer {
  margin-top: 50px;
}

.portfolio-note {
  font-style: italic;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio h2 {
    font-size: 2rem;
  }

  .portfolio-subtitle {
    font-size: 1rem;
  }

  .portfolio-content h3 {
    font-size: 1.15rem;
  }

  .portfolio-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .portfolio {
    padding: 60px 15px;
  }

  .portfolio h2 {
    font-size: 1.8rem;
  }

  .portfolio-content h3 {
    font-size: 1.05rem;
  }

  .portfolio-content p {
    font-size: 0.85rem;
  }

  .portfolio::before {
    width: 40px;
    height: 3px;
  }
}

.faq-body img {
  border-radius: 15px;
  width: 100%; 
  height: auto;
  display: block;
  max-width: 920px;
  max-width: 500px;
}


.faq {
  padding: 80px 20px;
  background-color: #fdfdfd;
}

.faq-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.faq-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.faq-body {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.faq-image {
  flex: 1 1 350px;
  max-width: 400px;
  text-align: center;
}

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

.faq-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0,0,0,0.15);
}

.faq-list {
  flex: 2 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.faq-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 20px;
  height: calc(100% - 40px);
  width: 4px;
  background: linear-gradient(180deg, #000000, #ff8f2e);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .faq-body {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .faq-body {
    flex-direction: column;
    align-items: center;
  }

  .faq-image {
    max-width: 90%;
  }

  .faq-list {
    max-width: 90%;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-item h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .faq {
    padding: 60px 15px;
  }

  .faq-header h2 {
    font-size: 1.8rem;
  }

  .faq-item h3 {
    font-size: 1.05rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }

  .faq-item::before {
    left: 0;
  }
}


.history {
  padding: 80px 20px;
  text-align: center;
}

.history h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000000;
}

.history p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #000000;
}

.history-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.history-card {
  background-color: #fff;
  flex: 1 1 280px;
  max-width: 300px;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.history-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.history-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.history-note {
  margin-top: 50px;
  font-style: italic;
  color: #555;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .history-cards {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .history h2 {
    font-size: 2rem;
  }

  .history-card {
    max-width: 90%;
    padding: 25px 15px;
  }
}

@media (max-width: 480px) {
  .history {
    padding: 60px 15px;
  }

  .history h2 {
    font-size: 1.8rem;
  }

  .history-card h3 {
    font-size: 1.1rem;
  }

  .history-card p {
    font-size: 0.9rem;
  }

  .history-note {
    font-size: 0.95rem;
  }
}


.events {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.events h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #000000;
}

.events p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.event-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.event-item:hover img {
  transform: scale(1.05);
}

.event-info {
  padding: 20px;
}

.event-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #000000;
  text-align: center;
}

.event-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #000000;
}

.event-tag {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .events h2 {
    font-size: 2rem;
  }
  
  .events p {
    font-size: 0.95rem;
  }

  .event-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .events h2 {
    font-size: 1.75rem;
  }
  
  .event-info h3 {
    font-size: 1.25rem;
  }

  .event-item img {
    height: 150px;
  }
}


.blog-section {
  background-color: #ffffff;
  padding: 3rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #000000;
}

.blog-intro {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 3rem auto;
  text-align: center;
  color: #000000;
}

.blog-post {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(1, 1, 1, 0.15);
  margin-bottom: 2.5rem;
  overflow: hidden;
  transition: background-color 0.3s ease;
  max-width: 600px;
  
}

.blog-post img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
}

.blog-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.blog-post h3 {
  font-size: 1.6rem;
  color: #000000;
  text-align: center;
  margin: 1rem 1.5rem 0.5rem 1.5rem;
}

.blog-post p {
  font-size: 1rem;
  color: #000000;
  margin: 0 1.5rem 1.5rem 1.5rem;
  text-align: center;
  line-height: 1.5;
  max-width: 800px;
}

.read-more {
  display: inline-block;
  margin: 0 1.5rem 1.5rem 1.5rem;
  padding: 1rem 1rem;
  background-color: #0d7000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: flex;
  max-width: 300px;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}


.blog-footer {
  font-size: 1.1rem;
  text-align: center;
  color: #b1b1b1;
  max-width: 700px;
  margin: 3rem auto 0 auto;
  font-style: italic;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 2rem;
  }

  .blog-post h3 {
    font-size: 1.4rem;
  }

  .blog-post p,
  .blog-intro,
  .blog-footer {
    font-size: 1rem;
  }
}

.privacy {
  max-width: 1200px;
  margin: 2rem auto 4rem auto;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  line-height: 1.6;
}

.privacy h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  text-align: center;
}

.privacy h2 {
  font-size: 1.6rem;
  color: #000000;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  padding-left: 0.8rem;
}

.privacy p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #2b2b2b;
}

.privacy ul {
  margin-left: 1.2rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
  color: #2b2b2b;
}

.privacy ul li {
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.privacy ul li strong {
  color: #2b2b2b;
}

.privacy address {
  font-style: normal;
  margin-top: 1.5rem;
  background-color: #00650d7c;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  color: #000000;
  line-height: 1.4;
}

.privacy a {
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s ease;
}


@media (max-width: 600px) {
  .privacy {
    padding: 1.5rem 1rem;
    margin: 1rem auto 3rem auto;
  }

  .privacy h1 {
    font-size: 2rem;
  }

  .privacy h2 {
    font-size: 1.3rem;
  }

  .privacy p,
  .privacy ul li,
  .privacy address {
    font-size: 0.95rem;
  }
}

.benefits {
  max-width: 1500px;
  margin: 4rem auto 6rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fdfcfb, #fffcfc);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.benefits h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #000000;
  line-height: 1.2;
}

.benefits p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #000000;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.benefits-list li {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.benefits-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.benefits-list img {
  width: 100%;
  height: 300px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.benefits-text {
  padding: 10px;
}

.benefits-list h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.benefits-list p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

@media (max-width: 992px) {
  .benefits-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .benefits h2 {
    font-size: 1.5rem;
  }

  .benefits p {
    font-size: 1rem;
  }

  .benefits-list li {
  }

  .benefits-list img {
    width: 100%;
    height: 300px;
  }

  .benefits-list h3 {
    font-size: 1.2rem;
  }
}

.goals {
  max-width: 1000px;
  margin: 4rem auto 6rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #fdfcfb, #f5f5f5);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.goals h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #222;
  line-height: 1.2;
}

.goals p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 3rem auto;
  line-height: 1.7;
  color: #555;
}

.goals ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

.goals li {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.goals li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.goals li img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 16px;
  object-fit: cover;
}

.goals li h3 {
  font-size: 1.4rem;
  color: #222;
  margin-bottom: 0.6rem;
  font-weight: 700;
  text-align: center;
}

.goals li p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

@media (max-width: 992px) {
  .goals ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .goals ul {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .goals h2 {
    font-size: 2rem;
  }

  .goals p,
  .goals li p {
    font-size: 1rem;
  }

  .goals li {
    padding: 1.5rem 1rem;
  }

  .goals li img {
    width: 60px;
    height: 60px;
  }

  .goals li h3 {
    font-size: 1.2rem;
  }
}


.offer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
}

.product {
  max-width: 350px;
  margin: 20px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product img {
  width: 100%;
  height: 300px;
  border-bottom: 3px solid #f0f0f0;
  transition: transform 0.4s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product h3 {
  font-size: 1.4rem;
  margin: 15px 10px 10px;
  color: #000000;
  font-weight: 600;
}

.product p {
  font-size: 1rem;
  padding: 0 15px;
  color: #000000;
  line-height: 1.6;
}

.product a {
  display: inline-block;
  margin-top: 15px;
  padding: 20px 30px;
  background: #0d7000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.product a:hover {
  background: linear-gradient(135deg, #3a57d1, #5c7aef);
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .product {
    display: inline-block;
    margin: 20px;
  }
}
