:root {
  --primary-color: #2C3E50;
  --secondary-color: #3498db;
  --accent-color: #E74C3C;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --text-color: #333;
  --text-light: #7F8C8D;
  --white: #FFFFFF;
  --gray: #BDC3C7;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container-n {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-q {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.browse-btn-r {
  background-color: var(--accent-color);
  color: var(--white);
  border: 2px solid var(--accent-color);
}

.browse-btn-r:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.section-title-t {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.section-title-t::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.header-x {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container-db {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container-y {
  display: flex;
  align-items: center;
}

.logo-link-z {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg-a {
  width: 40px;
  height: 40px;
}

.brand-name-b {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu-c {
  display: flex;
  align-items: center;
}

.burger-toggle-e {
  display: none;
}

.burger-label-f {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.burger-line-g {
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-list-h {
  display: flex;
  gap: 30px;
}

.nav-item-i {
  position: relative;
}

.nav-link-j {
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
  padding: 5px 0;
  position: relative;
}

.nav-link-j::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link-j:hover::after {
  width: 100%;
}

.nav-link-j.active-k::after {
  width: 100%;
}

@media (max-width: 768px) {
  .burger-label-f {
    display: flex;
  }
  
  .nav-list-h {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .burger-toggle-e:checked ~ .nav-list-h {
    right: 0;
  }
  
  .burger-toggle-e:checked ~ .burger-label-f .burger-line-g:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-toggle-e:checked ~ .burger-label-f .burger-line-g:nth-child(2) {
    opacity: 0;
  }
  
  .burger-toggle-e:checked ~ .burger-label-f .burger-line-g:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

.hero-section-m {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/bg.webp') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.hero-title-o {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-text-p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.features-section-s {
  padding: 80px 0;
}

.features-grid-u {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card-v {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.feature-card-v:hover {
  transform: translateY(-10px);
}

.feature-icon-w {
  margin: 0 auto 20px;
}

.feature-title-x {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-text-y {
  color: var(--text-light);
}

.cta-section-z {
  padding: 80px 0;
  background-color: var(--light-color);
  text-align: center;
}

.cta-title-aa {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text-ab {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.footer-ac {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid-ad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col-ae {
  margin-bottom: 20px;
}

.footer-title-af {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title-af::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-text-ag {
  margin-bottom: 15px;
}

.footer-list-ah {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-ai {
  transition: var(--transition);
}

.footer-link-ai:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.copyright-aj {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-hero-al {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/bg1.webp') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.shop-title-am {
  font-size: 3rem;
  margin-bottom: 20px;
}

.shop-text-an {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.products-section-ao {
  padding: 80px 0;
}

.products-grid-ap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card-aq {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card-aq:hover {
  transform: translateY(-5px);
}

.product-image-ar {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-title-as {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.product-description-at {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.product-card-aq .btn-q {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.about-hero-au {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/bg1.webp') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.about-title-av {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-text-aw {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-content-ax {
  padding: 80px 0;
}

.about-grid-ay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.about-col-az {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-image-ba {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mission-section-bb {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mission-highlight {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.mission-divider {
  margin: 20px auto 40px;
  display: block;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mission-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.mission-text p {
  margin-bottom: 25px;
}

.gradient-link {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  text-decoration: none;
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(231, 76, 60, 0.3);
  transition: border-bottom 0.3s ease;
}

.gradient-link:hover {
  border-bottom: 1px solid rgba(231, 76, 60, 0.8);
}

.mission-visual {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mission-visual:hover .mission-image {
  transform: scale(1.03);
}

.mission-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

@media (max-width: 992px) {
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .mission-visual {
    order: -1;
    max-width: 600px;
    margin: 0 auto 40px;
  }
}

@media (max-width: 768px) {
  .mission-section-bb {
    padding: 80px 0;
  }
  
  .mission-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .mission-text p {
    margin-bottom: 20px;
  }
  
  .mission-badge {
    width: 80px;
    height: 80px;
    padding: 10px;
  }
}

@media (max-width: 400px) {
  .mission-section-bb {
    padding: 60px 0;
  }
  
  .gradient-link {
    border-bottom: none;
  }
}

@media (max-width: 320px) {
  .mission-text {
    font-size: 0.95rem;
  }
  
  .mission-badge {
    width: 60px;
    height: 60px;
  }
}

.values-section-bc {
  margin-bottom: 60px;
}

.values-grid-bd {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card-be {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.value-card-be:hover {
  transform: translateY(-10px);
}

.value-icon-bf {
  margin: 0 auto 20px;
}

.value-title-bg {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.value-text-bh {
  color: var(--text-light);
}

.team-section-bi {
  padding: 60px 0;
  background-color: var(--light-color);
}

.team-grid-bj {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member-bk {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member-bk:hover {
  transform: translateY(-5px);
}

.team-image-bl {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-name-bm {
  padding: 20px 20px 5px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.team-position-bn {
  padding: 0 20px 20px;
  color: var(--text-light);
}

.contact-hero-bo {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/bg1.webp') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.contact-title-bp {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-text-bq {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-section-br {
  padding: 80px 0;
}

.contact-grid-bs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-bt {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.info-item-bu {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.info-icon-bv {
  flex-shrink: 0;
}

.hours-info-bw {
  margin-top: 40px;
}

.hours-title-bx {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 5px;
}

.hours-title-bx::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact-form-by {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-ca {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-cb {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label-cd {
  font-weight: 600;
  color: var(--primary-color);
}

.privacy-agreement_4h3 {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.privacy-checkbox_7f6 {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  accent-color: #FF6B35;
}

.privacy-text_8t3 {
  color: #555;
  font-size: 0.9rem;
}

.privacy-link_5n1 {
  color: #FF6B35;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-link_5n1:hover {
  color: #114B5F;
}

.gradient-btn_2w5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FF6B35 0%, #114B5F 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,107,53,0.3);
}

.gradient-btn_2w5:hover {
  background: linear-gradient(135deg, #114B5F 0%, #FF6B35 100%);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
  transform: translateY(-2px);
}

.gradient-btn_2w5:active {
  transform: translateY(0);
}

.btn-icon_9p3 {
  transition: transform 0.3s ease;
}

.gradient-btn_2w5:hover .btn-icon_9p3 {
  transform: translateX(3px);
}

.form-input-ce, .form-textarea-cj {
  padding: 12px 15px;
  border: 1px solid var(--gray);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input-ce:focus, .form-textarea-cj:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-textarea-cj {
  resize: vertical;
  min-height: 120px;
}

.map-section-ck {
  padding: 60px 0;
  background-color: var(--light-color);
}

.map-container-cl {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-svg-cm {
  background-color: var(--white);
}

.policy-hero-cn, .terms-hero-cu {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('images/bg1.webp') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
}

.policy-title-co, .terms-title-cv {
  font-size: 3rem;
  margin-bottom: 20px;
}

.policy-text-cp, .terms-text-cw {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.policy-content-cq, .terms-content-cx {
  padding: 80px 0;
}

.policy-section-cr, .terms-section-cy {
  margin-bottom: 40px;
}

.policy-list-cs, .terms-list-cz {
  margin: 15px 0 15px 30px;
}

.policy-list-cs li, .terms-list-cz li {
  margin-bottom: 10px;
  position: relative;
}

.policy-list-cs li::before, .terms-list-cz li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.policy-link-ct, .terms-link-da {
  color: var(--secondary-color);
  font-weight: 600;
  transition: var(--transition);
}

.policy-link-ct:hover, .terms-link-da:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-grid-ay, .contact-grid-bs {
    grid-template-columns: 1fr;
  }
  
  .about-col-az:last-child {
    order: -1;
  }
  
  .section-title-t {
    font-size: 1.8rem;
  }
  
  .hero-title-o, .shop-title-am, .about-title-av, .contact-title-bp, .policy-title-co, .terms-title-cv {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .burger-label-f {
    display: flex;
  }
  
  .nav-list-h {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .burger-toggle-e:checked ~ .nav-list-h {
    right: 0;
  }
  
  .burger-toggle-e:checked ~ .burger-label-f .burger-line-g:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-toggle-e:checked ~ .burger-label-f .burger-line-g:nth-child(2) {
    opacity: 0;
  }
  
  .burger-toggle-e:checked ~ .burger-label-f .burger-line-g:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .header-x {
    padding: 15px 0;
  }
  
  .logo-container-y, .nav-menu-c {
    justify-content: space-between;
  }
  
  .hero-section-m, .shop-hero-al, .about-hero-au, .contact-hero-bo, .policy-hero-cn, .terms-hero-cu {
    padding: 120px 0 60px;
  }
  
  .hero-title-o, .shop-title-am, .about-title-av, .contact-title-bp, .policy-title-co, .terms-title-cv {
    font-size: 2rem;
  }
  
  .hero-text-p, .shop-text-an, .about-text-aw, .contact-text-bq, .policy-text-cp, .terms-text-cw {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .section-title-t {
    font-size: 1.5rem;
  }
  
  .features-grid-u, .products-grid-ap, .values-grid-bd, .team-grid-bj {
    grid-template-columns: 1fr;
  }
  
  .btn-q {
    padding: 10px 20px;
  }
  
  .footer-grid-ad {
    grid-template-columns: 1fr;
  }
  
  .policy-list-cs, .terms-list-cz {
    margin-left: 20px;
  }
}

@media (max-width: 400px) {
  .brand-name-b {
    font-size: 1.2rem;
  }
  
  .hero-title-o, .shop-title-am, .about-title-av, .contact-title-bp, .policy-title-co, .terms-title-cv {
    font-size: 1.8rem;
  }
  
  .btn-q {
    width: 100%;
  }
}
.security-benefits-dc {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.section-header-dd {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-de {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.title-divider-df {
  margin: 0 auto 20px;
  animation: bounce-dp 2s infinite;
}

@keyframes bounce-dp {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.1); }
}

.section-subtitle-dg {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.benefits-grid-dh {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.benefit-card-di {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-di:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon-dj {
  margin-bottom: 20px;
  height: 60px;
}

.benefit-title-dk {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.benefit-title-dk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.benefit-text-dl p {
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.7;
}

.benefit-text-dl p:last-child {
  margin-bottom: 0;
}

.security-stats-dm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 8px;
}

.stat-item-dn {
  color: var(--white);
}

.stat-icon-do {
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px rgba(231, 76, 60, 0.5));
}

.stat-item-dn h4 {
  font-weight: 400;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .section-title-de {
    font-size: 1.8rem;
  }
  
  .benefits-grid-dh {
    gap: 25px;
  }
  
  .benefit-card-di {
    padding: 25px;
  }
  
  .security-stats-dm {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .security-benefits-dc {
    padding: 60px 0;
  }
  
  .section-title-de {
    font-size: 1.6rem;
  }
  
  .section-subtitle-dg {
    font-size: 1rem;
  }
  
  .benefits-grid-dh {
    grid-template-columns: 1fr;
  }
  
  .benefit-text-dl p {
    font-size: 0.95rem;
  }
}

@media (max-width: 320px) {
  .section-title-de {
    font-size: 1.4rem;
  }
  
  .benefit-card-di {
    padding: 20px;
  }
  
  .benefit-title-dk {
    font-size: 1.2rem;
  }
}
.security-details-ee {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.detail-header-ef {
  text-align: center;
  margin-bottom: 60px;
}

.detail-title-eg {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight-eh {
  color: var(--accent-color);
  position: relative;
}

.highlight-eh::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(231, 76, 60, 0.2);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlightExpand-et 1.5s ease-out forwards;
}

@keyframes highlightExpand-et {
  to { transform: scaleX(1); }
}

.wave-divider-ei {
  margin: 20px auto;
  display: block;
}

.detail-grid-ej {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.detail-card-ek {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-card-ek:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-icon-el {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content-em h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.card-content-em h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.card-text-en p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

.feature-list-eo {
  margin: 20px 0 0 20px;
}

.feature-list-eo li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
  color: var(--text-color);
}

.feature-list-eo li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 2px;
  background-color: var(--accent-color);
}

.tech-specs-ep {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 40px;
  color: white;
}

.specs-header-eq {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.specs-header-eq h3 {
  font-size: 1.8rem;
}

.specs-grid-er {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.spec-item-es h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent-color);
}

.spec-item-es p {
  line-height: 1.6;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .detail-title-eg {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .detail-card-ek {
    grid-template-columns: 1fr;
  }
  
  .card-icon-el {
    margin-bottom: 20px;
  }
  
  .specs-header-eq {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .security-details-ee {
    padding: 60px 0;
  }
  
  .detail-title-eg {
    font-size: 1.8rem;
  }
  
  .detail-card-ek {
    padding: 25px;
  }
  
  .tech-specs-ep {
    padding: 30px;
  }
}

@media (max-width: 400px) {
  .detail-title-eg {
    font-size: 1.6rem;
  }
  
  .card-content-em h3 {
    font-size: 1.4rem;
  }
  
  .feature-list-eo {
    margin-left: 15px;
  }
}

@media (max-width: 320px) {
  .detail-card-ek {
    padding: 20px;
  }
  
  .card-text-en p,
  .spec-item-es p {
    font-size: 0.95rem;
  }
  
  .tech-specs-ep {
    padding: 20px;
  }
}
.security-showcase-fe {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.showcase-header-ff {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-title-fg {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.title-highlight-fh {
  color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.title-highlight-fh::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(231, 76, 60, 0.15);
  z-index: -1;
  transform: skewX(-15deg);
  animation: highlightPulse-fv 3s infinite;
}

@keyframes highlightPulse-fv {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 0.3; }
}

.animated-divider-fi {
  margin: 20px auto;
  display: block;
}

.showcase-subtitle-fj {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.showcase-grid-fk {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.feature-block-fl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.reverse-fs {
  direction: rtl;
}

.reverse-fs > * {
  direction: ltr;
}

.feature-visual-fm {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image-fn {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.feature-visual-fm:hover .feature-image-fn {
  transform: scale(1.03);
}

.visual-overlay-fo {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.feature-content-fp {
  padding: 20px;
}

.feature-content-fp h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.feature-content-fp h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.feature-text-fq p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

.tech-list-fr {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.tech-list-fr li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-list-fr li svg {
  flex-shrink: 0;
}

.stats-grid-ft {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item-fu {
  text-align: center;
}

.stat-item-fu svg {
  margin-bottom: 10px;
}

.stat-item-fu p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

@media (max-width: 1200px) {
  .feature-block-fl {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .showcase-title-fg {
    font-size: 2.2rem;
  }
  
  .feature-block-fl {
    grid-template-columns: 1fr;
  }
  
  .reverse-fs {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .security-showcase-fe {
    padding: 60px 0;
  }
  
  .showcase-header-ff {
    margin-bottom: 40px;
  }
  
  .stats-grid-ft {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .showcase-title-fg {
    font-size: 1.8rem;
  }
  
  .showcase-subtitle-fj {
    font-size: 1rem;
  }
  
  .feature-content-fp h3 {
    font-size: 1.5rem;
  }
  
  .feature-text-fq p {
    font-size: 0.95rem;
  }
  
  .stats-grid-ft {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .showcase-title-fg {
    font-size: 1.6rem;
  }
  
  .tech-list-fr li {
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .security-showcase-fe {
    padding: 50px 0;
  }
  
  .feature-content-fp {
    padding: 10px;
  }
  
  .feature-content-fp h3 {
    font-size: 1.4rem;
  }
}
.gradient-feature-fw {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.gradient-header-fx {
  text-align: center;
  margin-bottom: 60px;
}

.gradient-title-fy {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.gradient-text-fz {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift-gq 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift-gq {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-arrows-ga {
  margin: 0 auto;
  display: block;
}

.feature-content-gb {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.text-block-gc {
  position: relative;
}

.gradient-paragraph-gd {
  margin-bottom: 40px;
}

.gradient-paragraph-gd p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

.gradient-link-ge {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  text-decoration: none;
  background-size: 200% 200%;
  animation: gradientShift-gq 8s ease infinite;
}

.highlight-gf {
  position: relative;
  font-weight: 600;
}

.highlight-gf::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(231, 76, 60, 0.2);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.highlight-gf:hover::after {
  transform: scaleX(1);
}

.tech-grid-gg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.tech-item-gh {
  text-align: center;
}

.tech-item-gh svg {
  margin-bottom: 15px;
}

.tech-item-gh h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.tech-item-gh p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.visual-block-gi {
  position: relative;
}

.image-container-gj {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image-gk {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container-gj:hover .feature-image-gk {
  transform: scale(1.03);
}

.animated-border-gl {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.pulsing-dot-gm {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 12px;
  height: 12px;
  background: #E74C3C;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(231, 76, 60, 0.7));
  animation: pulse-gr 2s infinite;
}

@keyframes pulse-gr {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.cta-block-gn {
  text-align: center;
  margin-top: 40px;
}

.gradient-cta-go {
  display: inline-block;
  padding: 18px 36px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  animation: gradientShift-gq 8s ease infinite;
  background-size: 200% 200%;
}

.gradient-cta-go:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.cta-underline-gp {
  margin: 20px auto 0;
  display: block;
}

@media (max-width: 1200px) {
  .gradient-title-fy {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .feature-content-gb {
    grid-template-columns: 1fr;
  }
  
  .visual-block-gi {
    order: -1;
  }
}

@media (max-width: 768px) {
  .gradient-feature-fw {
    padding: 60px 0;
  }
  
  .gradient-title-fy {
    font-size: 2rem;
  }
  
  .gradient-paragraph-gd p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gradient-title-fy {
    font-size: 1.8rem;
  }
  
  .tech-grid-gg {
    grid-template-columns: 1fr;
  }
  
  .gradient-cta-go {
    padding: 15px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 400px) {
  .gradient-title-fy {
    font-size: 1.6rem;
  }
  
  .gradient-paragraph-gd {
    margin-bottom: 30px;
  }
}

@media (max-width: 320px) {
  .gradient-feature-fw {
    padding: 50px 0;
  }
  
  .gradient-title-fy {
    font-size: 1.5rem;
  }
  
  .gradient-cta-go {
    font-size: 1rem;
    padding: 12px 24px;
  }
}
.product-showcase-gq {
  padding: 80px 0;
  background-color: #f8fafc;
}

.showcase-header-gr {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-title-gs {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.title-gradient-gt {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift-hk 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift-hk {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-underline-gu {
  margin: 20px auto;
  display: block;
}

.showcase-subtitle-gv {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.product-categories-gw {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.category-card-gx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card-gx:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.category-visual-gy {
  position: relative;
}

.category-image-gz {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.category-card-gx:hover .category-image-gz {
  transform: scale(1.03);
}

.category-overlay-ha {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.category-content-hb {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-content-hb h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.category-content-hb h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.category-text-hc p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-color);
}

.feature-list-hd {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.feature-list-hd li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list-hd li svg {
  flex-shrink: 0;
}

.category-button-he {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.category-button-he:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.tech-specs-hf {
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 40px;
  color: white;
}

.specs-header-hg {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.specs-header-hg h3 {
  font-size: 1.8rem;
}

.specs-content-hh p {
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.9;
}

.specs-grid-hi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
}

.spec-item-hj {
  text-align: center;
}

.spec-item-hj svg {
  margin-bottom: 15px;
}

.spec-item-hj p {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .showcase-title-gs {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .category-card-gx {
    grid-template-columns: 1fr;
  }
  
  .category-visual-gy {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .product-showcase-gq {
    padding: 60px 0;
  }
  
  .showcase-title-gs {
    font-size: 2rem;
  }
  
  .showcase-subtitle-gv {
    font-size: 1.1rem;
  }
  
  .category-content-hb h3 {
    font-size: 1.6rem;
  }
  
  .tech-specs-hf {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .showcase-title-gs {
    font-size: 1.8rem;
  }
  
  .category-content-hb {
    padding: 25px;
  }
  
  .category-content-hb h3 {
    font-size: 1.4rem;
  }
  
  .category-text-hc p {
    font-size: 0.95rem;
  }
  
  .specs-header-hg {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .specs-header-hg h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .showcase-title-gs {
    font-size: 1.6rem;
  }
  
  .category-button-he {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .product-showcase-gq {
    padding: 50px 0;
  }
  
  .category-content-hb {
    padding: 20px;
  }
  
  .feature-list-hd li {
    font-size: 0.9rem;
  }
  
  .specs-grid-hi {
    grid-template-columns: 1fr;
  }
}
.product-showcase-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.8rem;
  color: #2C3E50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.title-divider {
  margin: 20px auto;
  display: block;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #7F8C8D;
  max-width: 700px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-visual {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
}

.product-content {
  padding: 25px;
}

.product-name {
  font-size: 1.6rem;
  color: #2C3E50;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.product-name::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #E74C3C;
}

.product-description p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333;
}

.features-list {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.features-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list li svg {
  flex-shrink: 0;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2C3E50;
}

.product-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #E74C3C;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.tech-specs {
  background-color: #2C3E50;
  border-radius: 10px;
  padding: 40px;
  color: white;
}

.specs-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.specs-header h3 {
  font-size: 1.8rem;
}

.specs-content p {
  margin-bottom: 30px;
  line-height: 1.7;
  opacity: 0.9;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.spec-item {
  text-align: center;
}

.spec-item svg {
  margin-bottom: 15px;
}

.spec-item p {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 1200px) {
  .section-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .product-showcase-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
  }
  
  .specs-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .specs-header h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-name {
    font-size: 1.4rem;
  }
  
  .product-description p {
    font-size: 0.95rem;
  }
  
  .tech-specs {
    padding: 30px;
  }
}

@media (max-width: 400px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .product-footer {
    flex-direction: column;
    gap: 15px;
  }
  
  .product-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .product-showcase-section {
    padding: 50px 0;
  }
  
  .product-content {
    padding: 20px;
  }
  
  .features-list li {
    font-size: 0.9rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
  }
}
.timeline-xa {
  padding: 80px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.container-yb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-zc {
  text-align: center;
  margin-bottom: 60px;
}

.title-ad {
  font-size: 2.8rem;
  color: #2C3E50;
  margin-bottom: 15px;
  line-height: 1.3;
}

.highlight-be {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-mp 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-mp {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.divider-cf {
  margin: 20px auto;
  display: block;
}

.timeline-dg {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 30px;
}

.line-eh {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 1;
}

.item-fi {
  position: relative;
  margin-bottom: 60px;
  z-index: 2;
}

.dot-gj {
  position: absolute;
  left: -40px;
  top: 0;
  width: 24px;
  height: 24px;
  z-index: 3;
}

.content-hk {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.item-fi:hover .content-hk {
  transform: translateY(-5px);
}

.year-il {
  font-size: 1.2rem;
  color: #E74C3C;
  font-weight: 600;
  margin-bottom: 10px;
}

.event-jm {
  font-size: 1.6rem;
  color: #2C3E50;
  margin-bottom: 15px;
}

.desc-kn p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #333;
}

.list-lo {
  margin: 20px 0 0;
  padding-left: 20px;
}

.list-lo li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 25px;
}

.list-lo li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background-color: #E74C3C;
}

@media (max-width: 992px) {
  .title-ad {
    font-size: 2.4rem;
  }
  
  .timeline-dg {
    padding-left: 20px;
  }
  
  .line-eh {
    left: 20px;
  }
  
  .dot-gj {
    left: -32px;
  }
}

@media (max-width: 768px) {
  .timeline-xa {
    padding: 60px 0;
  }
  
  .title-ad {
    font-size: 2rem;
  }
  
  .header-zc {
    margin-bottom: 40px;
  }
  
  .event-jm {
    font-size: 1.4rem;
  }
  
  .content-hk {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .timeline-dg {
    padding-left: 0;
  }
  
  .line-eh {
    display: none;
  }
  
  .dot-gj {
    position: static;
    margin-bottom: 15px;
  }
  
  .item-fi {
    margin-bottom: 50px;
    padding-left: 0;
  }
  
  .title-ad {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  .title-ad {
    font-size: 1.6rem;
  }
  
  .event-jm {
    font-size: 1.3rem;
  }
  
  .content-hk {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  .timeline-xa {
    padding: 50px 0;
  }
  
  .desc-kn p, 
  .list-lo li {
    font-size: 0.95rem;
  }
}
.company-ethos-section {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.ethos-header {
  text-align: center;
  margin-bottom: 60px;
}

.ethos-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.ethos-highlight {
  color: var(--accent-color);
  position: relative;
}

.ethos-highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(231, 76, 60, 0.2);
  z-index: -1;
}

.ethos-divider {
  margin: 20px auto;
  display: block;
}

.ethos-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 20px;
}

.ethos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.ethos-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ethos-card.reverse {
  direction: rtl;
}

.ethos-card.reverse > * {
  direction: ltr;
}

.ethos-visual {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.ethos-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.ethos-visual:hover .ethos-image {
  transform: scale(1.03);
}

.ethos-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ethos-content {
  padding: 20px;
}

.ethos-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.ethos-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.ethos-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

.ethos-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.ethos-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ethos-list li svg {
  flex-shrink: 0;
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-item svg {
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

.ethos-quote {
  display: flex;
  align-items: center;
  gap: 30px;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 60px;
  position: relative;
  margin-bottom: 30px;
}

.ethos-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  border-radius: 10px 10px 0 0;
}

.quote-icon {
  flex-shrink: 0;
  opacity: 0.7;
}

.ethos-quote blockquote {
  margin: 0;
}

.ethos-quote blockquote p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 15px;
  font-style: italic;
}

.ethos-quote blockquote footer {
  font-weight: 600;
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .ethos-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .ethos-card {
    grid-template-columns: 1fr;
  }
  
  .ethos-card.reverse {
    direction: ltr;
  }
  
  .ethos-visual {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .company-ethos-section {
    padding: 60px 0;
  }
  
  .ethos-header {
    margin-bottom: 40px;
  }
  
  .ethos-quote {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .quote-icon {
    transform: rotate(90deg);
  }
}

@media (max-width: 576px) {
  .ethos-title {
    font-size: 1.8rem;
  }
  
  .ethos-subtitle {
    font-size: 1rem;
  }
  
  .ethos-content h3 {
    font-size: 1.5rem;
  }
  .ethos-badge {
    display: none;
  }
  .ethos-text p {
    font-size: 0.95rem;
  }
  
  .ethos-quote blockquote p {
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .ethos-title {
    font-size: 1.6rem;
  }
  
  .ethos-visual {
    height: 300px;
  }
  .ethos-badge {
    display: none;
  }
  .ethos-quote {
    padding: 30px 20px;
  }
}

@media (max-width: 320px) {
  .company-ethos-section {
    padding: 50px 0;
  }
  .ethos-badge {
    display: none;
  }
  .ethos-content {
    padding: 10px;
  }
  
  .ethos-list li {
    font-size: 0.9rem;
  }
  
  .tech-stats {
    grid-template-columns: 1fr;
  }
}
.contact-support-section {
  padding: 80px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.support-header {
  text-align: center;
  margin-bottom: 60px;
}

.support-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.support-highlight {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.support-divider {
  margin: 20px auto;
  display: block;
}

.support-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.support-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.support-icon {
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
}

.support-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.support-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.support-content {
  margin-bottom: 25px;
  flex-grow: 1;
}

.support-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-color);
}

.support-list {
  margin: 20px 0;
  padding-left: 20px;
}

.support-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: var(--text-color);
}

.support-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 2px;
  background-color: var(--accent-color);
}

.gradient-link {
  background: linear-gradient(90deg, #E74C3C 0%, #3498db 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  text-decoration: none;
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(231, 76, 60, 0.3);
  transition: border-bottom 0.3s ease;
}

.gradient-link:hover {
  border-bottom: 1px solid rgba(231, 76, 60, 0.8);
}

.support-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
  align-self: flex-start;
}

.support-link:hover {
  transform: translateX(5px);
}

.support-link::after {
  content: '→';
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.support-link:hover::after {
  margin-left: 10px;
}

.support-cta {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  color: white;
}

.cta-icon {
  flex-shrink: 0;
}

.cta-content {
  flex-grow: 1;
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button.phone {
  background-color: #2ecc71;
}

.cta-button.email {
  background-color: #3498db;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button svg {
  flex-shrink: 0;
}
@media (max-width: 400px) {
  .support-cta {
    flex-direction: column;
    padding: 25px 15px;
    text-align: center;
    gap: 25px;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .cta-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .cta-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-button {
    justify-content: center;
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .cta-button svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 320px) {
  .support-cta {
    padding: 20px 10px;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-button {
    font-size: 0.85rem;
  }
}
@media (max-width: 1200px) {
  .support-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .support-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .cta-icon {
    width: 80px;
    height: 80px;
  }
  
  .cta-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .contact-support-section {
    padding: 60px 0;
  }
  
  .support-header {
    margin-bottom: 40px;
  }
  
  .support-title {
    font-size: 2rem;
  }
  
  .support-subtitle {
    font-size: 1.1rem;
  }
  
  .support-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .support-title {
    font-size: 1.8rem;
  }
  
  .support-card h3 {
    font-size: 1.3rem;
  }
  
  .support-content p {
    font-size: 0.95rem;
  }
  
  .support-cta {
    padding: 30px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  
  .support-title {
    font-size: 1.6rem;
  }
  
  .cta-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-button {
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .contact-support-section {
    padding: 50px 0;
  }
  
  .support-card {
    padding: 20px;
  }
  
  .support-list li {
    font-size: 0.9rem;
  }
  
  .support-cta {
    padding: 25px 20px;
  }
}
.thanks-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
  background-color: #f8fafc;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  color: #2ecc71;
}

.thanks-title {
  font-size: 2.5rem;
  color: #2C3E50;
  margin-bottom: 20px;
}

.thanks-text {
  font-size: 1.2rem;
  color: #7F8C8D;
  max-width: 600px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-home {
  display: inline-block;
  padding: 12px 30px;
  background-color: #E74C3C;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-home:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .thanks-title {
    font-size: 2rem;
  }
  
  .thanks-text {
    font-size: 1rem;
  }
  
  .thanks-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
}