/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Promotional banner */
.promo-banner {
  background-color: #a61c37;
  color: white;
  padding: 8px 0;
  text-align: center;
  position: relative;
}

.promo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.promo-link {
  color: white;
  text-decoration: underline;
}

.close-btn {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main navigation */
.main-nav {
  background-color: #a61c37;

  padding: 10px 0;
}

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

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

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-selector select {
  border: none;
  background: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-top: 5px;
}

/* Header */
.header {
  background-color: white;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

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

.logo img {
  display: block;
}

.main-menu {
  display: flex;
  gap: 40px;
}

.menu-item {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.menu-item:hover {
  color: #a61c37;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.login-btn:hover {
  background-color: #f5f5f5;
}

/* Main content */
.main-content {
  background-color: #f8f9fa;
}

/* Hero section */
.hero {
  background-color: white;
  padding: 40px 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.hero h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 25px 0 15px 0;
}

.hero ul {
  list-style: none;
  margin-bottom: 25px;
}

.hero li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #666;
}

.hero li::before {
  content: "•";
  color: #a61c37;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.text-link {
  color: #a61c37;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-height: 44px;
}

.btn-primary {
  background-color: #a61c37;
  color: white;
}

.btn-primary:hover {
  background-color: #8b1529;
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: 1px solid #ddd;
}

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

.btn.large {
  padding: 16px 32px;
  font-size: 16px;
  min-height: 52px;
}

/* Promotion section */
.promotion-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  background-image: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.promotion-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.promotion-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.promotion-text p {
  font-size: 18px;
  color: #666;
}

.promotion-image {
  flex-shrink: 0;
}

.promotion-image img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Services grid */
.services-grid {
  background-color: white;
  padding: 60px 0;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.service-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  background-color: white;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Content cards */
.content-cards {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.content-cards h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

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

.content-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.content-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.content-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-link {
  color: #a61c37;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

/* Featured sections */
.featured-sections {
  background-color: white;
  padding: 80px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.featured-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.featured-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.award-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #a61c37;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.featured-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.featured-link {
  color: #a61c37;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.featured-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.featured-link:hover::after {
  transform: translateX(3px);
}

/* Services section */
.services-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.services-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.services-grid-detailed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-detailed {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.service-detailed:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detailed h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 20px 20px 15px 20px;
}

.service-detailed p {
  color: #666;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
}

.service-link {
  color: #a61c37;
  text-decoration: none;
  font-weight: 500;
  margin: 0 20px 20px 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(3px);
}

/* Value proposition */
.value-proposition {
  background-color: white;
  padding: 80px 0;
}

.value-proposition h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.value-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsibility section */
.responsibility-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.responsibility-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.responsibility-text {
  flex: 1;
}

.responsibility-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.responsibility-image {
  flex: 1;
}

.responsibility-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Quick actions */
.quick-actions {
  background-color: white;
  padding: 80px 0;
}

.quick-actions h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.action-btn {
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.action-btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
}

.action-btn.btn-primary {
  background-color: #a61c37;
  color: white;
  border-color: #a61c37;
}

.action-btn.btn-primary:hover {
  background-color: #8b1529;
}

/* Mobile app promotion */
.mobile-app-promo {
  background-color: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
}

.app-promo-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

.app-icon {
  flex-shrink: 0;
}

.app-text h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.app-text p {
  color: #666;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #333;
  color: white;
  padding: 60px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

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

.footer-link {
  color: #a61c37;
  text-decoration: none;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chat-btn {
  background-color: #a61c37;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(166, 28, 55, 0.3);
  transition: all 0.3s ease;
}

.chat-btn:hover {
  background-color: #8b1529;
  transform: translateY(-2px);
}

.chat-icon {
  font-size: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
  .nav-container,
  .header-container {
      flex-direction: column;
      gap: 20px;
  }

  .main-menu {
      gap: 20px;
  }

  .services-row,
  .cards-grid,
  .featured-grid,
  .services-grid-detailed,
  .value-grid,
  .actions-grid,
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .promotion-content,
  .responsibility-content,
  .app-promo-content {
      flex-direction: column;
      text-align: center;
  }

  .hero h1 {
      font-size: 24px;
  }

  .promotion-text h2 {
      font-size: 28px;
  }

  .cookie-buttons {
      flex-direction: column;
  }

  .btn {
      width: 100%;
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 15px;
  }

  .hero-content {
      padding: 0 15px;
  }

  .promotion-image img {
      width: 100%;
      max-width: 280px;
  }

  .hero h1 {
      font-size: 20px;
  }

  .promotion-text h2 {
      font-size: 24px;
  }
}


.duet-icon .duet-icon-svg {
  display: block;
  width: 24px;
  min-width: 100%;
  height: 24px;
  font-size: 0px;
}

.duet-icon-svg {
  width: 16px;
  height: 16px;
}

.duet-icon svg {
  width: 100%;
  min-width: 100%;
  overflow: clip;
  fill: #FFF;
  overflow-clip-margin: 1px;
}

.logoimg{
  width: 100%;
  height: 100%;
  max-width: 110px;
  max-height: 40px;
}

.logimg{
  width: 100%;
  height: 100%;
  max-width: 16px;
  max-height: 60px;
}

@media(max-width: 769px){
  .main-nav{
    display: none;
  }
}

@media(max-width: 555px){
  .main-menu{
    display: none;
  }
}

.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.offer-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
    text-transform: none;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 48, 48, 0.4);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 400px;
        margin: 10px;
        border-radius: 8px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .offer-badge {
        padding: 30px 25px;
        max-width: 90%;
    }
    
    .offer-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .offer-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    
    .offer-badge {
        padding: 25px 20px;
    }
    
    .offer-title {
        font-size: 1.75rem;
    }
    
    .offer-description {
        font-size: 0.95rem;
    }
}