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

body {
  font-family: 'Noto Sans', sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.navbar {
  padding: 15px 0;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo img {
  height: 30px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #4A90E2;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 15px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
}

/* Buttons */
.btn-primary {
  background: #4A90E2;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  background: #357ABD;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 5px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

.btn-outline {
  background: transparent;
  color: #4A90E2;
  padding: 12px 25px;
  border: 2px solid #4A90E2;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #4A90E2;
  color: white;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: white;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A90E2;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 0.9rem;
  color: #666;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.service-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

/* Why Choose Section */
.why-choose {
  padding: 80px 0;
  background: #f8f9fa;
}

.why-choose h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: flex;
  gap: 60px;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Noto Sans', sans-serif;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4A90E2;
}

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

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 30px;
}

.footer-info {
  flex: 1;
}

.footer-info .logo img {
  height: 35px;
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 0.9rem;
  margin-bottom: 5px;
  opacity: 0.8;
}

.footer-links {
  flex: 1;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.footer-links a {
  display: block;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #555;
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .service-item {
      flex-direction: column;
      gap: 40px;
  }
  
  .service-item:nth-child(even) {
      flex-direction: column;
  }
  
  .stats-grid {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .stat-item {
      min-width: 200px;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 15px;
  }
  
  .hero-text h1 {
      font-size: 2.2rem;
  }
  
  .about-text h2 {
      font-size: 1.8rem;
  }
  
  .why-choose h2 {
      font-size: 2rem;
  }
  
  /* Mobile Menu */
  .mobile-menu-btn {
      display: flex;
  }
  
  .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: white;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 40px;
      transition: right 0.3s ease;
      box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
      z-index: 100;
  }
  
  .nav-menu.active {
      right: 0;
  }
  
  .nav-menu a {
      font-size: 1.2rem;
      padding: 10px 20px;
  }
  
  .stats-grid {
      flex-direction: column;
      gap: 20px;
  }
  
  .contact-content {
      flex-direction: column;
      gap: 30px;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 30px;
  }
  
  .cookie-content {
      flex-direction: column;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
      padding: 100px 0 60px;
  }
  
  .hero-text h1 {
      font-size: 1.8rem;
  }
  
  .hero-text p {
      font-size: 1rem;
  }
  
  .about-text h2 {
      font-size: 1.5rem;
  }
  
  .service-content h3 {
      font-size: 1.4rem;
  }
  
  .why-choose h2 {
      font-size: 1.7rem;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
  }
}

.legal {
  padding: 100px 0;
}

.legal h2 {
  color: #111;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 44px */
  letter-spacing: 1.6px;
  margin-bottom: 20px;
}

.legal p {
  color: #111;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 160%; /* 22.4px */
}