/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Color Scheme: Black + Emerald */
:root {
  --primary-black: #000000;
  --secondary-black: #1a1a1a;
  --primary-emerald: #10b981;
  --secondary-emerald: #059669;
  --light-emerald: #d1fae5;
  --gray-light: #f3f4f6;
  --gray-medium: #6b7280;
  --gray-dark: #374151;
  --white: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 1rem;
}

/* Images - General Responsive Styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-emerald);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--secondary-emerald);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-emerald);
  border: 2px solid var(--primary-emerald);
}

.btn-outline:hover {
  background-color: var(--primary-emerald);
  color: var(--white);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
.header {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}

.logo {
  flex-shrink: 0;
  order: 1;
}

.logo a {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

/* Navigation */
.nav {
  flex: 1;
  min-width: 0;
  display: block;
  order: 2;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 400px;
  max-width: 90vw;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
  padding: 2rem;
  border-radius: 16px;
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.1);
  backdrop-filter: blur(10px);
}

.nav::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
  transform: rotate(45deg);
  border-left: 1px solid rgba(16, 185, 129, 0.1);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.nav-toggle:checked ~ .nav {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-emerald);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-list a:hover {
  color: var(--white);
  background: rgba(16, 185, 129, 0.1);
  padding-left: 20px;
}

.nav-list a:hover::before {
  transform: scaleY(1);
}

.header-cta {
  flex-shrink: 0;
  order: 3;
  display: block;
}

.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Mobile Navigation */
.nav-toggle {
  display: none;
}

.header-inner {
  position: relative;
}

.nav-toggle-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 50px;
  height: 50px;
  order: 2;
  position: relative;
  z-index: 1001;
  margin-left: auto;
  background: linear-gradient(
    135deg,
    var(--primary-emerald) 0%,
    var(--secondary-emerald) 100%
  );
  border-radius: 12px;
  padding: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.nav-toggle-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  background: linear-gradient(
    135deg,
    var(--secondary-emerald) 0%,
    var(--primary-emerald) 100%
  );
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--white);
  margin-bottom: 5px;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle-label span:last-child {
  margin-bottom: 0;
}

.nav-toggle:checked ~ .nav-toggle-label {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.nav-toggle:checked ~ .nav-toggle-label:hover {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  margin-bottom: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  margin-bottom: 0;
}

/* Hero Section */
.hero {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
  color: var(--white);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-subtitle {
  color: var(--primary-emerald);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--gray-medium);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
}

/* Why Important Section */
.why-important {
  padding: 80px 0;
  background-color: var(--white);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  color: var(--primary-black);
  margin-bottom: 2rem;
}

.why-text p {
  color: var(--gray-dark);
  margin-bottom: 1.5rem;
}

.why-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-image img:hover {
  transform: scale(1.02);
}

/* Packages Section */
.packages {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.packages-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.packages-image img {
  width: 100%;
  height: auto;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.packages-image img:hover {
  transform: scale(1.02);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-black);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-light {
  background-color: #f9fafb;
}

.package-medium {
  background-color: var(--light-emerald);
}

.package-dark {
  background-color: var(--primary-emerald);
  color: var(--white);
}

.package-header {
  margin-bottom: 2rem;
}

.package-icon {
  font-size: 2.5rem;
  color: var(--primary-emerald);
  margin-bottom: 1rem;
}

.package-dark .package-icon {
  color: var(--white);
}

.package-header h3 {
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-emerald);
}

.package-dark .price {
  color: var(--white);
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.package-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.package-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-emerald);
  font-weight: bold;
}

.package-description {
  margin-bottom: 2rem;
  color: var(--gray-dark);
}

.package-dark .package-description {
  color: var(--light-emerald);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
  background-color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
  padding: 2rem;
  position: relative;
}

.step-number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-emerald);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: var(--light-emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-emerald);
}

.step-item h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-item p {
  color: var(--gray-dark);
  line-height: 1.6;
}

/* Program Benefits Section */
.program {
  padding: 80px 0;
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--gray-light);
  border-radius: 8px;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-emerald);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Statistics Section */
.statistics {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--secondary-black) 100%
  );
  color: var(--white);
}

.statistics .section-title {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary-emerald);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--gray-light);
  font-weight: 500;
}

.statistics-description {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-header h4 {
  margin-bottom: 0;
}

.review-badge {
  background-color: var(--primary-emerald);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
}

.review-text {
  font-style: italic;
  color: var(--gray-dark);
}

/* Guarantee Section */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-emerald) 0%,
    var(--secondary-emerald) 100%
  );
  color: var(--white);
  text-align: center;
}

.guarantee-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.guarantee-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  color: var(--primary-black);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item i {
  color: var(--primary-emerald);
  font-size: 1.2rem;
  width: 20px;
  flex-shrink: 0;
}

.contact-description {
  margin-top: 2rem;
  color: var(--gray-dark);
}

.contact-form {
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary-black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-emerald);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--primary-emerald);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  color: var(--primary-black);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--gray-dark);
}

/* Footer */
.footer {
  background-color: var(--primary-black);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-emerald);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-emerald);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-dark);
  color: var(--gray-medium);
}

/* Legal Pages Styles */
.legal-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 20px 60px;
  background-color: var(--white);
  min-height: 100vh;
}

.legal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-light);
}

.legal-header h1 {
  color: var(--primary-black);
  font-size: 2.5rem;
  margin-bottom: 0;
}

.legal-content {
  line-height: 1.8;
  color: var(--gray-dark);
}

.legal-content h2 {
  color: var(--primary-black);
  margin: 2rem 0 1rem;
  font-size: 1.8rem;
}

.legal-content h3 {
  color: var(--primary-black);
  margin: 1.5rem 0 1rem;
  font-size: 1.3rem;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookies-table th,
.cookies-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--gray-light);
}

.cookies-table th {
  background-color: var(--primary-emerald);
  color: var(--white);
  font-weight: 600;
}

.cookies-table tr:hover {
  background-color: var(--gray-light);
}

.last-updated {
  margin-top: 3rem;
  padding: 1rem;
  background-color: var(--gray-light);
  border-left: 4px solid var(--primary-emerald);
  font-weight: 500;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-black);
  color: var(--white);
  padding: 1rem 0;
  z-index: 1001;
  display: none;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin-bottom: 0;
}

.cookie-content a {
  color: var(--primary-emerald);
  text-decoration: none;
}

.cookie-content a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .logo a {
    font-size: 1.15rem;
  }

  .header-cta .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .logo a {
    font-size: 1.1rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .logo {
    order: 1;
  }

  .nav-toggle-label {
    order: 2;
    width: 45px;
    height: 45px;
    padding: 10px;
  }

  .nav {
    width: 100%;
    max-width: 100vw;
    right: 0;
    left: 0;
    border-radius: 0;
    top: 100%;
    padding: 1.5rem 1rem;
  }

  .nav::before {
    display: none;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
  }

  .nav-list a {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .why-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-image {
    order: -1;
  }

  .why-image img {
    max-width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .packages-image {
    margin-bottom: 2rem;
  }

  .packages-image img {
    max-width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .guarantee-title {
    font-size: 2rem;
  }

  .package-card {
    padding: 1.5rem;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hero-image img,
  .why-image img,
  .packages-image img {
    border-radius: 8px;
  }
}
