/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Colors */
  --primary: #0B1F3A;
  --primary-dark: #1a3a5a;
  --primary-light: #1a2f4a;
  
  /* Secondary/Accent Colors */
  --secondary: #ff7a00;
  --secondary-dark: #e96d00;
  --secondary-light: #ff9436;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light: #f8f9fa;
  --lighter: #f4f6f9;
  --dark: #333333;
  --text: #333333;
  --text-light: #666666;
  --border: #e5e5e5;
  --border-light: #eeeeee;
  
  /* Status Colors */
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  /* WhatsApp Color */
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  
  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 20px rgba(0,0,0,0.06);
  --shadow-xl: 0 12px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 30px rgba(0,0,0,0.1);
  
  /* Transitions */
  --transition: all 0.3s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-round: 50px;
  --radius-circle: 50%;
  
  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-xxl: 40px;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 20px;
  
  /* Header Heights */
  --header-height: 80px;
  --nav-top-offset: 80px;
  --contact-bar-height: 40px;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: var(--lighter);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== CONTACT BAR ===== */
  .contact-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 15px 0;
    text-align: center;
  }

.contact-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.contact-bar span,
.contact-bar a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

.contact-bar a:hover {
  opacity: 0.8;
}

.contact-bar i {
  font-size: 1rem;
}

/* ===== HEADER ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* ===== HERO SECTIONS ===== */
.hero {
  background: linear-gradient(rgba(11,31,58,0.85), rgba(11,31,58,0.85)), url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 140px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Product Page Hero */
.hero-product {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0 40px;
  text-align: center;
}

.hero-product h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-product p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* Geo Tag */
.geo-tag {
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: var(--radius-round);
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-text {
  color: var(--secondary);
  padding: 12px 20px;
}

.btn-text:hover {
  color: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* CTA Group */
.cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section h1 {
  text-align: center;
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--primary);
  position: relative;
  padding-bottom: 15px;
}

.section h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--secondary);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--secondary);
}

.text-center .section-title:after {
  left: 50%;
  transform: translateX(-50%);
}

.section .intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #555;
  font-size: 16px;
}

/* ===== GRIDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  border: 1px solid transparent;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 20px;
}

.card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
}

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

.card-link:hover {
  color: var(--secondary-dark);
  gap: 10px;
}

/* Feature Cards */
.feature-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge i {
  font-size: 2rem;
  color: var(--secondary);
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--text-light);
  font-weight: 500;
}

/* ===== CLIENT LOGOS ===== */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.client-logo {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  color: var(--primary);
  min-width: 200px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.client-logo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

/* ===== APPLICATION GRID ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.app-item {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

.app-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

/* ===== PAGE NAVIGATION ===== */
.page-nav {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-nav .container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.page-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
}

.page-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.page-nav a:hover:after,
.page-nav a.active:after {
  width: 100%;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  color: var(--secondary);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.breadcrumb .current {
  color: var(--primary);
  font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  background: #f0f2f5;
  transition: var(--transition);
}

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

.faq-question i {
  transition: var(--transition);
  color: var(--secondary);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  color: var(--text-light);
  background: var(--white);
}

.faq-answer.show {
  padding: 20px;
  max-height: 200px;
  border-top: 1px solid var(--border-light);
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--secondary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-round);
  box-shadow: 0 5px 20px rgba(255, 122, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s infinite;
  border: none;
  font-weight: 500;
}

.sticky-cta:hover {
  background: var(--secondary-dark);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

@keyframes pulse {
  0% { box-shadow: 0 5px 20px rgba(255, 122, 0, 0.3); }
  50% { box-shadow: 0 5px 30px rgba(255, 122, 0, 0.5); }
  100% { box-shadow: 0 5px 20px rgba(255, 122, 0, 0.3); }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp);
  color: white;
  padding: 15px 25px;
  border-radius: var(--radius-round);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section h2:after {
  background: var(--secondary);
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.footer-cta-title {
  font-size: 34px;
  margin-bottom: 20px;
}

.footer-cta-text {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  text-align: left;
}

.footer-heading {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list a {
  color: var(--white);
  opacity: 0.8;
  text-decoration: none;
}

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

.footer-muted {
  color: var(--white);
  opacity: 0.8;
}

.footer-list i {
  margin-right: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.content-page {
  padding: 80px 0;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px;
}

.page-lead {
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto;
}

.form-botcheck {
  display: none !important;
}

.form-status {
  min-height: 20px;
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-status.is-loading {
  color: var(--primary);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

button:disabled,
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== TRUST SECTION ===== */
.trust-section {
  background: var(--light);
  padding: 60px 0;
  margin-top: 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.trust-item {
  padding: 20px;
}

.trust-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== MODEL NAVIGATION ===== */
.model-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0 50px;
  padding: 15px 20px;
  background: var(--light);
  border-radius: var(--radius-round);
  position: sticky;
  top: var(--nav-top-offset);
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.model-nav a {
  padding: 10px 20px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.model-nav a:hover,
.model-nav a.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  padding: 100px 0;
}

.product-grid {
  display: flex;
  gap: 70px;
  margin-bottom: 110px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-image-container {
  display: flex;
  gap: 20px;
  flex: 1;
  min-width: 320px;
}

.thumbnail-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thumbnail-img {
  width: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.thumbnail-img:hover,
.thumbnail-img.active {
  border-color: var(--primary);
}

.main-image-wrapper {
  background: var(--white);
  padding: 15px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.main-product-img {
  width: 100%;
  max-width: 450px;
  display: block;
  border-radius: var(--radius-lg);
}

.product-details {
  flex: 1.3;
  min-width: 320px;
}

.product-title {
  font-size: 30px;
  margin-bottom: 12px;
  color: var(--primary);
}

.product-title a {
  text-decoration: none;
  color: inherit;
}

.product-title a:hover {
  color: var(--secondary);
}

.product-price {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 25px;
  color: var(--primary);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  font-size: 15px;
}

.spec-table td {
  padding: 12px;
  border: 1px solid var(--border-light);
}

.spec-table td:first-child {
  background: #fafafa;
  font-weight: 600;
}

.feature-list {
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 8px;
}

/* ===== SCROLL BEHAVIOR ===== */
html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .product-grid {
    gap: 40px;
  }
  
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header & Navigation */
  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    display: none;
    padding: 20px 0;
    gap: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }

  nav ul.active {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    display: block;
  }

  .menu-toggle {
    display: block;
  }

  /* Contact Bar */
  .contact-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .contact-bar span,
  .contact-bar a {
    justify-content: center;
  }

  /* Hero */
  .hero h1 {
    font-size: 28px;
  }

  .hero {
    padding: 100px 0;
  }
  
  .hero-product h1 {
    font-size: 28px;
  }
  
  .hero-product {
    padding: 60px 0 30px;
  }

  /* Model Navigation */
  .model-nav {
    border-radius: 0;
    top: 60px;
    padding: 10px;
    margin: 20px 0 30px;
    --nav-top-offset: 60px;
  }
  
  .model-nav a {
    padding: 8px 15px;
    font-size: 12px;
  }
  
  /* Product Grid */
  .product-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .product-image-container {
    width: 100%;
    flex-direction: column;
  }
  
  .thumbnail-strip {
    flex-direction: row;
    order: 2;
  }
  
  .thumbnail-img {
    width: 60px;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  /* Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Page Navigation */
  .page-nav .container {
    gap: 15px;
  }
  
  /* WhatsApp Button */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  /* Sticky CTA */
  .sticky-cta {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .sticky-cta-text {
    font-size: 16px;
  }
  
  .sticky-cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* Trust Section */
  .trust-number {
    font-size: 32px;
  }
  
  /* SEO Content */
  .seo-grid, .app-grid, .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .seo-title {
    font-size: 28px;
  }
  
  /* Section Titles */
  .section h1 {
    font-size: 28px;
  }
  
  .section h2 {
    font-size: 26px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Scroll padding */
  html {
    scroll-padding-top: 80px;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-secondary {
    margin-left: 0;
  }

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

  .footer-cta-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .thumbnail-strip {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .thumbnail-img {
    width: 50px;
  }
  
  .product-price {
    font-size: 20px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .client-logo {
    min-width: 150px;
    padding: 15px;
  }
}
