* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Corbel, Arial, sans-serif;
  color: #222;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  background-color: #e1e8f5;
  padding: 12px 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  width: 110px;
  height: 55px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-links a {
  color: #3a4966;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.nav-links a.active {
  color: #8e3c12;
}

.nav-links a:hover {
  color: #111;
}

.divider-img {
  display: block;
  width: min(100%, 1180px);
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.page-divider {
  margin-top: 8px;
}

.back-section {
  min-height: 520px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(225, 232, 245, 0.55), rgba(225, 232, 245, 0.8)),
    url("background.jpg") center/cover no-repeat;
}

.content {
  max-width: 800px;
  width: 100%;
}

.content h2 {
  font-size: 40px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.home-highlights,
.home-products,
.home-cta {
  padding: 60px 20px;
}

.home-highlights {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.home-products {
  background-color: #f8fbff;
}

.home-cta {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.section-heading {
  width: min(100%, 760px);
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  font-size: 34px;
  color: #24344f;
  margin-bottom: 10px;
}

.section-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: #5a6780;
}

.highlight-grid,
.home-product-grid {
  width: min(100%, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.highlight-card,
.home-product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 32px rgba(74, 97, 136, 0.12);
  text-align: center;
}

.highlight-card h3,
.home-product-card h3 {
  font-size: 24px;
  color: #24344f;
  margin-bottom: 12px;
}

.highlight-card p,
.home-product-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #5a6780;
}

.home-product-card img {
  width: 100%;
  max-width: 220px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto 18px;
}

.home-products-action {
  text-align: center;
  margin-top: 28px;
}

.home-button {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #6a87b9 0%, #8e3c12 100%);
}

.home-cta-box {
  width: min(100%, 860px);
  margin: 0 auto;
  background: linear-gradient(180deg, #dfe8f8 0%, #edf3ff 100%);
  border-radius: 28px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(77, 100, 138, 0.12);
}

.home-cta-box h2 {
  font-size: 34px;
  color: #22324f;
  margin-bottom: 12px;
}

.home-cta-box p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5a77;
  margin-bottom: 20px;
}

.products-section {
  padding: 60px 20px 80px;
  background-color: #f8fbff;
  overflow: hidden;
}

.products-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
  width: 100%;
}

.products-heading h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #2d3d5c;
}

.products-heading p {
  font-size: 17px;
  line-height: 1.6;
  color: #5d6780;
}

.slider {
  width: min(100%, 1220px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.slides {
  position: relative;
  width: 100%;
  min-height: 460px;
  overflow: visible;
}

.slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 840px);
  transform: translateX(-50%) scale(0.72);
  opacity: 0;
  filter: blur(3px);
  transition: transform 0.7s ease, opacity 0.7s ease, filter 0.7s ease;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 4;
  pointer-events: auto;
}

.slide.prev {
  transform: translateX(-92%) scale(0.84);
  opacity: 0.65;
  filter: blur(1px);
  z-index: 3;
}

.slide.next {
  transform: translateX(-8%) scale(0.84);
  opacity: 0.65;
  filter: blur(1px);
  z-index: 3;
}

.slide.far-prev {
  transform: translateX(-120%) scale(0.62);
  opacity: 0.18;
  filter: blur(4px);
  z-index: 2;
}

.slide.far-next {
  transform: translateX(20%) scale(0.62);
  opacity: 0.18;
  filter: blur(4px);
  z-index: 2;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(70, 93, 130, 0.16);
  width: 100%;
  max-width: 100%;
}

.product-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-image {
  width: 100%;
  max-width: min(100%, 300px);
  max-height: 280px;
  object-fit: contain;
  display: block;
}

.product-copy {
  min-width: 0;
}

.product-copy h3 {
  font-size: 30px;
  margin-bottom: 14px;
  color: #25334d;
  overflow-wrap: anywhere;
}

.product-copy p {
  font-size: 17px;
  line-height: 1.8;
  color: #56647c;
  overflow-wrap: anywhere;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background-color: #dfe7f5;
  color: #33415c;
  font-size: 24px;
  cursor: pointer;
  z-index: 6;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.slider-btn:hover {
  background-color: #cfdaf0;
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background-color: #c1cad9;
  cursor: pointer;
}

.dot.active {
  background-color: #4e658d;
}

.about-page {
  padding: 28px 20px 60px;
  background: linear-gradient(180deg, #f7f9fd 0%, #ffffff 100%);
}

.about-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.about-card {
  min-height: 360px;
  padding: 34px 26px 28px;
  background: linear-gradient(180deg, #dbe5f8 0%, #cfdcf4 100%);
  border-radius: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 26px rgba(72, 94, 134, 0.12);
}

.about-card h2 {
  font-size: 30px;
  color: #111;
  margin-bottom: 12px;
}

.card-divider {
  width: min(100%, 220px);
  margin-bottom: 36px;
}

.about-card p {
  max-width: 260px;
  font-size: 17px;
  line-height: 1.7;
  color: #101010;
  overflow-wrap: anywhere;
}

.core-values-section {
  width: min(100%, 1180px);
  margin: 50px auto 0;
}

.core-values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.core-value-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 32px rgba(74, 97, 136, 0.12);
}

.core-value-card h3 {
  font-size: 24px;
  color: #24344f;
  margin-bottom: 12px;
}

.core-value-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5a6780;
}

.core-page {
  padding: 28px 20px 60px;
  background: linear-gradient(180deg, #f5f8fe 0%, #ffffff 100%);
}

.core-section {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.core-section h1 {
  text-align: center;
  font-size: 36px;
  color: #1f2d46;
  margin-bottom: 36px;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 36px;
  align-items: start;
}

.core-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.core-photo {
  width: min(100%, 190px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(66, 90, 126, 0.16);
  background-color: #dbe5f7;
}

.core-card h2 {
  font-size: 24px;
  color: #111;
  margin-top: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.contact-page {
  padding: 28px 20px 60px;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
}

.contact-section {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: start;
}

.contact-intro {
  padding: 30px 24px;
  background: linear-gradient(180deg, #dfe8f8 0%, #edf3ff 100%);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(77, 100, 138, 0.12);
}

.contact-intro h1 {
  font-size: 34px;
  color: #22324f;
  margin-bottom: 14px;
}

.contact-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: #4b5a77;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

.contact-email {
  display: inline-block;
  color: #8e3c12;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-form {
  padding: 30px 24px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(77, 100, 138, 0.14);
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-size: 16px;
  font-weight: 700;
  color: #263655;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd9ea;
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  color: #24324b;
  background-color: #fdfefe;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8ca6d3;
  box-shadow: 0 0 0 3px rgba(177, 197, 231, 0.28);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form button {
  margin-top: 6px;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #6a87b9 0%, #8e3c12 100%);
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.95;
}

@media (max-width: 768px) {
  header {
    padding: 12px 16px;
  }

  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .content h2 {
    font-size: 32px;
  }

  .content p {
    font-size: 17px;
  }

  .highlight-grid,
  .home-product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .home-cta-box h2 {
    font-size: 30px;
  }

  .slides {
    min-height: 540px;
    overflow: hidden;
  }

  .slide,
  .slide.active,
  .slide.prev,
  .slide.next,
  .slide.far-prev,
  .slide.far-next {
    width: 100%;
    left: 0;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }

  .slide {
    opacity: 0;
  }

  .slide.active {
    opacity: 1;
    position: relative;
  }

  .slide.prev,
  .slide.next,
  .slide.far-prev,
  .slide.far-next {
    opacity: 0;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .product-image {
    max-width: 240px;
    max-height: 220px;
  }

  .product-copy h3 {
    font-size: 24px;
  }

  .slider-btn {
    width: 42px;
    height: 42px;
    font-size: 20px;
    flex-shrink: 0;
  }

  .about-page {
    padding: 24px 16px 48px;
  }

  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .about-card {
    min-height: 320px;
    padding: 28px 20px 24px;
  }

  .about-card h2 {
    font-size: 26px;
  }

  .core-values-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .core-value-card h3 {
    font-size: 22px;
  }

  .core-page {
    padding: 24px 16px 48px;
  }

  .core-section h1 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .core-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .core-card h2 {
    font-size: 21px;
  }

  .contact-page {
    padding: 24px 16px 48px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-intro h1 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .divider-img {
    max-width: calc(100% - 20px);
  }

  .page-divider {
    margin-top: 6px;
  }

  .back-section {
    min-height: 0;
    padding: 32px 14px;
  }

  .content h2 {
    font-size: 28px;
  }

  .content p {
    font-size: 16px;
  }

  .home-highlights,
  .home-products,
  .home-cta {
    padding: 44px 14px;
  }

  .section-heading h2,
  .home-cta-box h2 {
    font-size: 26px;
  }

  .section-heading p,
  .highlight-card p,
  .home-product-card p,
  .home-cta-box p {
    font-size: 15px;
  }

  .highlight-card,
  .home-product-card,
  .home-cta-box {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .highlight-card h3,
  .home-product-card h3 {
    font-size: 21px;
  }

  .home-product-card img {
    max-width: 180px;
    height: 160px;
  }

  .products-section {
    padding: 48px 14px 60px;
  }

  .slides {
    min-height: 500px;
  }

  .product-card {
    padding: 18px;
    border-radius: 20px;
  }

  .product-copy h3 {
    font-size: 21px;
  }

  .product-copy p {
    font-size: 15px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .about-card h2 {
    font-size: 24px;
  }

  .about-card p {
    font-size: 16px;
  }

  .core-values-section {
    margin-top: 40px;
  }

  .core-value-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .core-value-card h3 {
    font-size: 20px;
  }

  .core-value-card p {
    font-size: 15px;
  }

  .core-grid {
    grid-template-columns: 1fr;
  }

  .core-section h1 {
    font-size: 26px;
  }

  .core-photo {
    width: min(100%, 220px);
  }

  .core-card h2 {
    font-size: 20px;
  }

  .contact-intro,
  .contact-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .contact-intro h1 {
    font-size: 26px;
  }

  .contact-email {
    font-size: 16px;
  }
}