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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', system-ui, -apple-system, sans-serif;
  font-size: 21px;
  line-height: 1.5;
  color: #0F172A;
  background: #F8FAFC;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}

.col {
  padding: 0 16px;
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 67px;
  color: #D8E123;
}

h2 {
  font-size: 50px;
  color: #777B23;
}

h3 {
  font-size: 37px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 16px;
}

a {
  color: #777B23;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #D8E123;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #D8E123;
}

.logo:hover {
  color: #777B23;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #777B23;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.main-nav {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-item {
  display: inline-block;
}

.nav-link {
  font-size: 16px;
  padding: 8px 16px;
  color: #0F172A;
  font-weight: 500;
}

.nav-link:hover {
  color: #D8E123;
  background: rgba(216, 225, 35, 0.1);
  border-radius: 4px;
}

.hero-wrap {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #777B23;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(119, 123, 35, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 32px;
}

.hero-content h1 {
  color: #F1F68D;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 21px;
  margin-bottom: 32px;
  color: #fff;
}

.carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 20;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dot.active {
  background: #D8E123;
}

.cta-element {
  display: inline-block;
  padding: 16px 32px;
  background: #D8E123;
  color: #0F172A;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
  border: none;
  cursor: pointer;
}

.cta-element:hover {
  background: #F1F68D;
  transform: translateY(-2px);
  color: #0F172A;
}

.action-link {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  color: #777B23;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid #777B23;
  border-radius: 4px;
  transition: all 0.3s;
}

.action-link:hover {
  background: #777B23;
  color: #fff;
}

.content-wrap {
  padding: 64px 0;
}

.section-block {
  padding: 48px 0;
}

.info-segment {
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 50px;
  color: #777B23;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 21px;
  color: #0F172A;
  margin-bottom: 32px;
}

.flex-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 28px;
  color: #D8E123;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  color: #0F172A;
}

.content-item {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.info-component {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-module {
  padding: 24px;
  background: #F8FAFC;
  border-left: 4px solid #D8E123;
  margin-bottom: 24px;
}

.responsive-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.content-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.dynamic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.full-width-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 32px 0;
}

.text-content {
  max-width: 800px;
  margin: 0 auto 32px;
}

.image-caption {
  font-size: 16px;
  color: #777B23;
  text-align: center;
  margin-top: 16px;
  font-style: italic;
}

.testimonial-section {
  background: #fff;
  padding: 64px 0;
}

.testimonial-card {
  background: #F8FAFC;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-top: 4px solid #D8E123;
}

.testimonial-text {
  font-size: 21px;
  font-style: italic;
  margin-bottom: 16px;
  color: #0F172A;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 700;
  color: #777B23;
}

.contact-section {
  background: #777B23;
  padding: 64px 0;
  color: #fff;
}

.contact-section h2 {
  color: #F1F68D;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0F172A;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #F8FAFC;
  border-radius: 4px;
  font-family: 'Roboto', system-ui, sans-serif;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #D8E123;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: #D8E123;
  color: #0F172A;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-submit:hover {
  background: #F1F68D;
}

.footer {
  background: #0F172A;
  color: #F8FAFC;
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-title {
  font-size: 21px;
  color: #D8E123;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: #F8FAFC;
  font-size: 16px;
}

.footer-links a:hover {
  color: #D8E123;
}

.footer-bottom {
  border-top: 1px solid #777B23;
  padding-top: 24px;
  text-align: center;
  font-size: 16px;
  color: #F8FAFC;
}

.page-header {
  background: linear-gradient(135deg, #777B23, #D8E123);
  padding: 64px 0;
  text-align: center;
  color: #fff;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 21px;
  color: #fff;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}

.breadcrumb li {
  font-size: 16px;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #F1F68D;
}

.breadcrumb a {
  color: #F1F68D;
}

.faq-section {
  padding: 64px 0;
}

.faq-item {
  background: #fff;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: #F8FAFC;
  border: none;
  text-align: left;
  font-size: 21px;
  font-weight: 700;
  color: #0F172A;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #F1F68D;
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
  padding: 24px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 16px;
  color: #0F172A;
}

.stats-section {
  background: #D8E123;
  padding: 64px 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-size: 50px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #777B23;
  font-weight: 500;
}

.team-section {
  padding: 64px 0;
}

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

.team-member {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-8px);
}

.team-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-size: 28px;
  color: #D8E123;
  margin-bottom: 8px;
}

.team-role {
  font-size: 16px;
  color: #777B23;
  margin-bottom: 16px;
  font-weight: 500;
}

.team-bio {
  font-size: 16px;
  color: #0F172A;
}

.blog-section {
  padding: 64px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  font-size: 16px;
  color: #777B23;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 28px;
  color: #0F172A;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 16px;
  color: #D8E123;
  font-weight: 500;
}

.blog-link:hover {
  color: #777B23;
}

.location-section {
  padding: 64px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.location-card {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.location-name {
  font-size: 28px;
  color: #D8E123;
  margin-bottom: 16px;
}

.location-address {
  font-size: 16px;
  color: #0F172A;
  margin-bottom: 8px;
}

.location-phone {
  font-size: 16px;
  color: #777B23;
  font-weight: 500;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 32px;
}

@media screen and (max-width: 1050px) {
  .container {
    max-width: 100%;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 37px;
  }

  .hero-wrap {
    height: 500px;
  }

  .flex-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dynamic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 850px) {
  h1 {
    font-size: 37px;
  }

  h2 {
    font-size: 28px;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .main-nav.visible {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #F8FAFC;
  }

  .nav-link {
    display: block;
    padding: 16px 24px;
  }

  .hero-wrap {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .flex-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-wrap, .section-block {
    padding: 32px 0;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media screen and (max-width: 575px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 21px;
  }

  h3 {
    font-size: 21px;
  }

  .container, .nav-container {
    padding: 0 12px;
  }

  .hero-wrap {
    height: 350px;
  }

  .hero-content {
    padding: 16px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .flex-grid {
    grid-template-columns: 1fr;
  }

  .dynamic-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .team-grid, .blog-grid, .location-grid {
    grid-template-columns: 1fr;
  }

  .responsive-layout {
    grid-template-columns: 1fr;
  }

  .cta-element, .btn-submit {
    width: 100%;
  }

  .page-header {
    padding: 32px 0;
  }

  .content-wrap, .section-block {
    padding: 24px 0;
  }

  .full-width-image {
    height: 250px;
  }
}
