@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

* {
    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%;
    scroll-behavior: smooth;
    font-family: "Oswald", sans-serif;
}

body {
    font-family: "Oswald", sans-serif;
    margin: 0;
    height: 100%;
    background: #ffffff;
  }
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}
  
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: bold;
    position: relative;
    background: #d16b43;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 20px 40px;
}

.header .logo a {
    font-size: 1.3rem;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  
.header .nav ul {
    display: flex;
    gap: 20px;
}

.header .nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px;
    transition: color 0.3s ease;
}
    
.header .nav ul li a:hover {
    color: #f7a400;
}
    
.mobile-menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
    
.mobile-menu-icon .bar {
    width: 25px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
}
    
    @media (max-width: 900px) {
      .header {
        padding: 15px;
      }

      .header .nav {
        display: none;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: linear-gradient(135deg, #2a0000, #3d0a0a, #4e0f0f, #660000);
        text-align: center;
        z-index: 999;
      }
    
      .header .nav.active {
        display: block;
      }
      .header .nav ul {
          flex-direction: column;
          gap: 20px;
          padding: 20px;
        }
      
        .mobile-menu-icon {
          display: flex;
        }
 }

.faq {
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
  color: #333;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.accordion-item {
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #d16b43;
  color: white;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  user-select: none;
}

.accordion-button:hover,
.accordion-button[aria-expanded="true"] {
  background: #c45124;
}

.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-button[aria-expanded="true"]::after {
  content: '−';
  transform: rotate(180deg);
}

.accordion-content {
  padding: 1rem 1.5rem;
  background: #f9faff;
  font-size: 1rem;
  line-height: 1.5;
  border-top: 1px solid #ddd;
}

@media (max-width: 480px) {
  .faq {
    max-width: 90%;
  }
  .accordion-button {
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }
  .accordion-content {
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
}


.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    min-height: 70vh;
    color: #fff;
    background-color: #d16b43;
}

.hero a {
    color: white;
    background-color: #c2491a;
    margin-top: 30px;
    padding: 10px 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

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

    .hero h1 {
        font-size: 1.8rem;
    }

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

.form-container {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #34495e;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #3498db;
  outline: none;
}

form button {
  width: 100%;
  padding: 0.9rem;
  background-color: #3498db;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #2980b9;
}

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

.popup-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.popup-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #2c3e50;
}

.popup-content button {
  background-color: #2ecc71;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-content button:hover {
  background-color: #27ae60;
}

@media (max-width: 480px) {
  .form-container {
    padding: 1.2rem;
  }

  form button {
    font-size: 1rem;
  }
}

.success {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px;
}

.success h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.success ul {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.success li {
  background: #fff5f0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.success li:hover {
  transform: translateY(-10px);
}

.success h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #b0411d;
  font-weight: 600;
}

.success h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: #6b4b3d;
  font-weight: 500;
  font-style: italic;
}

.success p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a4a4a;
  flex-grow: 1;
}

@media (max-width: 900px) {
  .success ul {
    flex-direction: column;
    align-items: center;
  }

  .success li {
    max-width: 90%;
  }
}


.about {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px;
}

.about h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #b0411d;
  font-weight: 600;
}

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

.about img {
  flex: 1 1 450px;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(209, 107, 67, 0.15);
  object-fit: cover;
  min-width: 280px;
  height: auto;
}

@media (max-width: 900px) {
  .about-block {
    flex-direction: column;
    text-align: center;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

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

  .about img {
    max-width: 90%;
    margin: 20px auto 0;
  }
}


.our-services {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px;
}

.our-services h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.our-services ul {
  display: flex;
  gap: 2.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.our-services li {
  background-color: #fff5f0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.our-services li:hover {
  transform: translateY(-8px);
}

.our-services h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: #b0411d;
  font-weight: 600;
}

.our-services h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #6b4b3d;
  font-weight: 500;
  font-style: italic;
}

.our-services p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a4a4a;
  flex-grow: 1;
}

.our-services > a {
  display: block;
  width: max-content;
  margin: 3rem auto 0;
  padding: 12px 30px;
  background-color: #d16b43;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.our-services > a:hover {
  background-color: #b5562f;
}

@media (max-width: 900px) {
  .our-services ul {
    flex-direction: column;
    align-items: center;
  }

  .our-services li {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

.why {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px;
}

.why h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.why ul {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.why li {
  background: #fff5f0;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(209, 107, 67, 0.15);
  padding: 2rem 1.5rem;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
}

.why li:hover {
  transform: translateY(-8px);
}

.why img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.why h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #b0411d;
  font-weight: 600;
}

.why p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 900px) {
  .why ul {
    flex-direction: column;
    align-items: center;
  }

  .why li {
    max-width: 90%;
    margin-bottom: 20px;
  }
}

.reviews {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px 4rem;
  color: #333;
}

.reviews h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.reviews ul {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  justify-content: center;
}

.reviews li {
  background-color: #fff5f0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
  padding: 2rem;
  flex: 1 1 320px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.reviews li:hover {
  transform: translateY(-8px);
}

.reviews img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border: 3px solid #d16b43;
}

.reviews h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #b0411d;
  font-weight: 600;
}

.reviews p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  font-style: italic;
}

@media (max-width: 900px) {
  .reviews ul {
    flex-direction: column;
    align-items: center;
  }

  .reviews li {
    max-width: 90%;
    margin-bottom: 20px;
  }
}


footer {
  margin: 3rem auto 2rem;
  padding: 2.5rem 20px;
  background-color: #d16b43;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

footer > a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  align-self: flex-start;
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
  padding: 0;
  min-width: 160px;
  flex: 1 1 200px;
}

footer ul h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 2px solid #fff5f0;
  padding-bottom: 0.5rem;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ffd3c0;
}

footer ul li {
  color: #fff;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer > a {
    margin-bottom: 2rem;
  }

  footer ul {
    flex: none;
    min-width: 100%;
  }
}

.privacy {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px 4rem;
  color: #333;
  background-color: #fff5f0;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
}

.privacy h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.privacy ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.privacy li {
  margin-bottom: 2.5rem;
}

.privacy h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  color: #b0411d;
  font-weight: 600;
}

.privacy p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a4a4a;
}

@media (max-width: 900px) {
  .privacy {
    padding: 0 15px 3rem;
  }

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

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

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

.service {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 20px 4rem;
}

.service h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #d16b43;
  font-weight: 700;
}

.service ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service li {
  background-color: #fff5f0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  text-align: center;
}

.service li:hover {
  transform: translateY(-8px);
}

.service img {
  width: 310px;
  height: 245px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 3px solid #d16b43;
}

.service h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
  color: #b0411d;
  font-weight: 700;
}

.service h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #a6583b;
  font-weight: 600;
}

.service ul ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.service ul ul h5 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #b0411d;
  font-weight: 600;
  border-bottom: 1px solid #d16b43;
  padding-bottom: 0.4rem;
}

.service ul ul li p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}

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

  .service img {
    width: 200px;
    height: 150px;
  }

  .service h3 {
    font-size: 1.4rem;
  }

  .service h4 {
    font-size: 1rem;
  }

  .service ul ul h5 {
    font-size: 1.1rem;
  }

  .service ul ul li p {
    font-size: 0.95rem;
  }
}

.pricing {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 20px 20px 4rem;
  background-color: #fff5f0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
}

.pricing h2 {
  font-size: 2.6rem;
  text-align: center;
  color: #d16b43;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: #4a4a4a;
}

.pricing ul {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 0;
  border-top: 2px solid #d16b43;
  border-bottom: 2px solid #d16b43;
}

.pricing li {
  border-bottom: 1px solid #d16b43;
  padding: 1.3rem 1rem;
  font-size: 1.05rem;
  color: #4a4a4a;
}

.pricing li:last-child {
  border-bottom: none;
}

.pricing h3 {
  font-weight: 600;
  color: #b0411d;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.pricing a {
  color: #d16b43;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.pricing a:hover {
  color: #b0411d;
  text-decoration: none;
}

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

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

  .pricing ul {
    max-width: 100%;
  }
}

.cta {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #d16b43, #f2a071);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  box-shadow: 0 10px 30px rgba(209, 107, 67, 0.4);
}

.cta h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.cta .btn-primary {
  background-color: #fff;
  color: #d16b43;
  font-weight: 700;
  padding: 0.9rem 2.5rem;
  font-size: 1.15rem;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.6);
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.cta .btn-primary:hover,
.cta .btn-primary:focus {
  background-color: #b0411d;
  color: #fff;
  box-shadow: 0 6px 20px rgba(176, 65, 29, 0.8);
  outline: none;
}

@media (max-width: 900px) {
  .cta {
    padding: 2rem 1rem;
    margin: 3rem auto;
  }

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

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

  .cta .btn-primary {
    padding: 0.7rem 2rem;
    font-size: 1rem;
  }
}


.contact_info {
  max-width: 600px;
  margin: 3rem auto 5rem;
  padding: 2rem 1.5rem;
  background-color: #fff8f5;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(209, 107, 67, 0.15);
  color: #4a4a4a;
  text-align: center;
}

.contact_info h2 {
  font-size: 2.4rem;
  color: #d16b43;
  margin-bottom: 1.8rem;
  font-weight: 700;
}

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

.contact_info li {
  margin-bottom: 1.6rem;
  border-bottom: 1px solid #e3c3b3;
  padding-bottom: 1rem;
}

.contact_info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b0411d;
  margin-bottom: 0.3rem;
}

.contact_info p {
  font-size: 1.1rem;
  margin: 0;
  color: #6f4a39;
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .contact_info {
    max-width: 90%;
    padding: 1.5rem 1rem;
  }

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

  .contact_info h3 {
    font-size: 1.1rem;
  }

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


.news {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 0 1.5rem;
  color: #3a3a3a;
}

.news h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d16b43;
  margin-bottom: 2.5rem;
  text-align: center;
  text-shadow: 0 2px 5px rgba(209, 107, 67, 0.4);
}

.news ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}

.news li {
  background: #fff8f5;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.12);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(209, 107, 67, 0.25);
}

.news img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.news h3 {
  font-size: 1.4rem;
  color: #b0411d;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.news p {
  font-size: 1rem;
  line-height: 1.5;
  color: #5a5a5a;
  margin: 0 0 0.8rem 0;
}

.news li p:last-child {
  font-size: 0.9rem;
  color: #a67c68;
  font-style: italic;
  margin-top: auto;
  text-align: right;
}

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

  .news ul {
    grid-template-columns: 1fr;
  }

  .news img {
    height: 140px;
  }

  .news h3 {
    font-size: 1.2rem;
  }

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

.mission {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 1.5rem;
  color: #3a3a3a;
  background-color: #fff7f0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(209, 107, 67, 0.15);
}

.mission h2 {
  font-size: 2.8rem;
  color: #d16b43;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(209, 107, 67, 0.3);
}

.mission ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 2rem;
}

.mission li {
  background: #fff1e6;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 4px 16px rgba(209, 107, 67, 0.1);
  transition: transform 0.3s ease;
}

.mission li:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(209, 107, 67, 0.25);
}

.mission h3 {
  font-size: 1.4rem;
  color: #b0411d;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.mission p {
  font-size: 1rem;
  line-height: 1.5;
  color: #5a5a5a;
  margin: 0;
}

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

  .mission ul {
    grid-template-columns: 1fr;
  }

  .mission li {
    padding: 1.2rem 1rem;
  }

  .mission h3 {
    font-size: 1.2rem;
  }

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


.our-story {
  max-width: 1100px;
  margin: 6rem auto;
  padding: 1.5rem;
  color: #3a3a3a;
  background-color: #fff9f4;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(200, 110, 55, 0.12);
}

.our-story h2 {
  font-size: 2.8rem;
  color: #d16b43;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 6px rgba(209, 107, 67, 0.25);
}

.our-story ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.our-story li {
  background: #fff1e6;
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 3px 12px rgba(209, 107, 67, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.our-story li:hover {
  box-shadow: 0 8px 28px rgba(209, 107, 67, 0.22);
  transform: translateY(-6px);
}

.our-story h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b0411d;
  margin-bottom: 0.7rem;
}

.our-story p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a5a5a;
  margin: 0;
}

@media (max-width: 480px) {
  .our-story h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .our-story ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .our-story li {
    padding: 1.2rem 1.2rem;
  }

  .our-story h3 {
    font-size: 1.3rem;
  }

  .our-story p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 900px) {
    .about-text {
        flex: 0;
    }
}