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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.breadcrumb {
  font-size: 0.9rem;
  margin: 15px 0;
}
.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}
.breadcrumb span {
  color: #555;
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.site-nav {
  list-style: none;
  display: flex;
  gap: 20px;
}
.site-nav li a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}
.site-nav li a:hover {
  color: #007bff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}
.hero-content {
  flex: 1 1 300px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}
.btn-primary {
  background: #007bff;
  color: #fff;
}
.btn-secondary {
  background: #6c757d;
  color: #fff;
}
.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
}

.features {
  margin: 60px 0;
}
.features-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.feature-card img {
  width: 40px;
  margin-bottom: 15px;
}
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

.stats-counter {
  margin: 60px 0;
}
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.stat {
  text-align: center;
}
.stat .number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
}
.stat .label {
  font-size: 1rem;
  color: #555;
}

.gallery {
  margin: 60px 0;
}
.gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery-item img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.description {
  margin: 60px 0;
}
.description h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.description p {
  font-size: 1rem;
  color: #555;
}

.benefits {
  margin: 60px 0;
}
.benefits ul {
  list-style: disc inside;
  color: #555;
}
.benefits li {
  margin-bottom: 10px;
}

.faq {
  margin: 60px 0;
}
.accordion-item {
  border-bottom: 1px solid #ddd;
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 15px;
  background: #f8f9fa;
  border: none;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
}
.accordion-body {
  padding: 15px;
  display: none;
  font-size: 0.95rem;
  color: #555;
}
.accordion-item.active .accordion-body {
  display: block;
}

.testimonials {
  margin: 60px 0;
}
.slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 10px;
}
.slide {
  flex: 0 0 300px;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.slide blockquote {
  font-style: italic;
  margin-bottom: 10px;
}
.slide cite {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  color: #777;
}

.pricing {
  margin: 60px 0;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: left;
}
.pricing-table th {
  background: #f8f9fa;
}
.pricing-table td ul {
  list-style: disc inside;
}
.pricing-table td li {
  margin-bottom: 5px;
}

.cta-banner {
  text-align: center;
  background: #007bff;
  color: #fff;
  padding: 40px 20px;
  border-radius: 6px;
  margin: 60px 0;
}
.cta-banner h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.cta-banner p {
  margin-bottom: 20px;
  font-size: 1rem;
}

.team {
  margin: 60px 0;
}
.team-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.team-member {
  text-align: center;
}
.team-member img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.team-member h3 {
  font-size: 1.1rem;
}
.team-member .role {
  font-size: 0.9rem;
  color: #777;
}

.newsletter {
  margin: 60px 0;
  text-align: center;
}
.newsletter p {
  margin-bottom: 20px;
  color: #555;
}
.newsletter form {
  display: inline-flex;
  gap: 10px;
}
.newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
}
.newsletter button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background: #007bff;
  color: #fff;
  cursor: pointer;
}

.site-footer {
  background: #333;
  color: #fff;
  padding: 30px 0;
  margin-top: 60px;
}
.site-footer .social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
}
.site-footer .social-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}
.site-footer p {
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .slider {
    gap: 10px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.logo {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.site-nav a:hover {
  color: #007bff;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  min-width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-caption {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.slide-caption h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.slide-caption p {
  font-size: 1.2rem;
}
.slide-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.slide-controls button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.about-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-section p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.services-section {
  padding: 60px 0;
}
.services-section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
.services-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card h3 {
  font-size: 1.2rem;
  margin: 15px;
}
.service-card p {
  flex: 1;
  margin: 0 15px 15px;
  color: #555;
}
.service-card .btn-primary {
  margin: 0 15px 15px;
  text-align: center;
  padding: 10px;
  border-radius: 4px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
}

.testimonials-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
.testimonials-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.testimonial {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.testimonial blockquote {
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial cite {
  display: block;
  text-align: right;
  color: #777;
  font-size: 0.9rem;
}

.advantages-section {
  padding: 60px 0;
}
.advantages-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}
.advantages-list {
  max-width: 800px;
  margin: 0 auto;
  list-style: disc inside;
  color: #555;
}
.advantages-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.advantages-list strong {
  color: #007bff;
}

.contact-section {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-section p {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #555;
}

.site-footer {
  background: #333;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.footer-links {
  margin-bottom: 15px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 5px;
}
.footer-links a:hover {
  text-decoration: underline;
}
.site-footer p {
  font-size: 0.9rem;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 300px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-btn {
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #007bff;
  color: #fff;
}
.cookie-btn.decline {
  background: #ccc;
  color: #333;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #007bff;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: none;
  }
  .site-nav.open ul {
    display: flex;
  }
  .slide-caption h1 {
    font-size: 2rem;
  }
  .slide-caption p {
    font-size: 1rem;
  }
}

.title_background {
  background: #007bff;
  padding: 40px 0;
  text-align: center;
}
.title_background .title {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.text_background {
  background: #f5f5f5;
  padding: 30px 0;
}
.text_background .text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  white-space: pre-wrap;
}

.about-link-section {
  background: #f0f8ff;
  padding: 40px 0;
  text-align: center;
}

.about-link-text {
  font-size: 1.1rem;
  color: #333;
}

.about-link-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  margin-left: 8px;
}

.about-link-text a:hover {
  text-decoration: underline;
}

.about-section-large {
  padding: 80px 0;
  background: #fff;
}
.about-section-large h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.about-image {
  flex: 1 1 400px;
}
.about-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.about-text {
  flex: 1 1 400px;
}
.about-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-values {
  list-style: disc inside;
  color: #555;
}
.about-values li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.about-section-large h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}
.about-timeline {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.timeline-item {
  position: relative;
  padding-left: 50px;
  border-left: 3px solid #007bff;
}
.timeline-item .year {
  position: absolute;
  left: -10px;
  top: 0;
  background: #007bff;
  color: #fff;
  padding: 4px 10px;
  font-weight: 500;
  border-radius: 4px;
  font-size: 0.9rem;
}
.timeline-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  .about-image,
  .about-text {
    flex: 1 1 100%;
  }
  .about-timeline {
    grid-template-columns: 1fr;
  }
}

.dropdown {
  display: none !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 100;
}

.has-dropdown:hover .dropdown {
  display: flex !important;
}

.has-dropdown.open .dropdown {
  display: flex !important;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-nav a {
  display: block;
  padding: 8px 0;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.site-nav a:hover {
  color: var(--accent);
}

.dropdown li {
  border-bottom: 1px solid #eee;
}
.dropdown li:last-child {
  border-bottom: none;
}
.dropdown a {
  padding: 12px 16px;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--light-bg);
}

.has-dropdown {
  position: relative;
}

@media (max-width: 768px) {
  .dropdown {
    display: none !important;
    position: static;
    box-shadow: none;
    background: transparent;
  }
  .has-dropdown.open .dropdown {
    display: flex;
  }
}
