@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0284c7; /* Sky Blue */
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #ea580c; /* Vibrant Orange */
  --accent-hover: #c2410c;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --whatsapp: #25D366;
  --whatsapp-hover: #16a34a;
  
  --font-family: 'Outfit', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.12), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  --shadow-hover: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

/* ================== COMPONENTS ================== */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(234, 88, 12, 0.39);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.23);
}

.btn-secondary {
  background-color: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-secondary:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.23);
}

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

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

/* ================== HEADER ================== */

.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

/* Logo image sizing */
.logo-img {
  height: 120px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 110px;
  margin-bottom: 16px;
}

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

.nav-link {
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  font-size: 16px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 12px 0;
  z-index: 100;
  border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 24px;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.header-actions {
  display: flex;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-dark);
}

/* ================== SPLIT HERO ================== */

.hero {
  padding: 80px 0;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 54px;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  justify-content: center;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badges i {
  color: var(--primary);
}

/* ================== FLOATING BUTTONS ================== */

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: var(--whatsapp);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.floating-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover, .floating-call:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

/* ================== QUICK PICK ================== */

.quick-pick {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.quick-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.quick-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.quick-card span {
  font-size: 48px;
  margin-bottom: 20px;
}

.quick-card h3 {
  font-size: 20px;
  color: var(--primary-dark);
}

/* ================== SECTIONS ================== */

.section {
  padding: 100px 0;
}

.section-bg {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-muted);
}

/* ================== SERVICES GRID ================== */

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

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
  border-color: var(--primary-light);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 18px;
}

.service-card-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.link-arrow {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-arrow:hover {
  color: var(--primary-dark);
  gap: 12px; /* Slight animation on hover */
}

/* ================== WHY CHOOSE US ================== */

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

.why-card {
  background: var(--bg-white);
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-main);
}

.why-card p {
  color: var(--text-muted);
}

/* ================== CTA BANNER ================== */

.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: var(--radius-lg);
  margin: 40px 24px;
}

.cta-banner h2 {
  color: white;
  font-size: 42px;
  margin-bottom: 40px;
}

.cta-banner .btn-group {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-dark);
  box-shadow: none;
}

.cta-banner .btn-primary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

/* ================== ABOUT ================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.about-content p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 24px;
}

/* ================== REVIEWS ================== */

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

.review-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.stars {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
}

.reviewer-info h4 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 4px;
}

/* ================== FAQ ================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-content {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

/* ================== CONTACT ================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info {
  background: var(--primary-dark);
  color: white;
  padding: 48px;
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  color: white;
  margin-bottom: 24px;
  font-size: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.info-item i, .info-item svg {
  color: var(--accent);
  width: 32px;
  height: 32px;
}

.info-item h4 {
  color: var(--primary-light);
  margin-bottom: 8px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-item a, .info-item p {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.info-item a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--bg-white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* ================== FOOTER ================== */

.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  color: white;
  display: block;
  margin-bottom: 24px;
}

.footer-logo span {
  color: var(--accent);
}

.footer-col h3 {
  color: white;
  margin-bottom: 24px;
  font-size: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: white;
  padding-left: 8px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.footer-contact i, .footer-contact svg {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #1e293b;
  font-size: 14px;
}

/* Media queries moved to the bottom of the file to preserve correct cascading overrides */


/* ================== PROBLEMS GRID (SERVICE PAGES) ================== */

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

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.problem-card:hover::before {
  transform: scaleX(1);
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.problem-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-light), #bae6fd);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.problem-card:hover .problem-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: scale(1.1);
}

.problem-card h4 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.4;
}

.problem-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.problem-card a:hover {
  gap: 10px;
  color: var(--accent-hover);
}

/* ================== TIMELINE / PROCESS (SERVICE PAGES) ================== */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  counter-reset: step;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
  border: 4px solid var(--bg-white);
  transition: var(--transition);
}

.timeline-step:hover .step-num {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.35);
  transform: scale(1.1);
}

.timeline-step h4 {
  font-size: 18px;
  color: var(--text-main);
  margin-bottom: 8px;
  font-weight: 700;
}

.timeline-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================== BRANDS STRIP (SERVICE PAGES) ================== */

.brands-strip {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.brand-item {
  padding: 12px 28px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: default;
}

.brand-item:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ================== PRICING BOX (SERVICE PAGES) ================== */

.pricing-box {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #f0f9ff 100%);
  border: 1.5px solid #bae6fd;
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.pricing-box p {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}

.pricing-box p + p {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed #bae6fd;
}

/* ================== RESPONSIVE ================== */

@media (max-width: 1024px) {
  .contact-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    text-align: center;
  }
  .hero-image {
    height: 400px;
  }
  .quick-pick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .why-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu, .header-actions {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero h1 {
    font-size: 40px;
  }
  .section {
    padding: 60px 0;
  }
  .services-grid, .why-grid, .reviews-grid, .quick-pick-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    text-align: center;
  }
  .info-item {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .logo-img {
    height: 80px;
  }
  .footer-logo-img {
    height: 80px;
  }
  .header-container {
    height: 90px;
  }
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .problem-card {
    padding: 24px 20px;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .timeline::before {
    display: none;
  }
  .brands-list {
    gap: 12px;
  }
  .cta-banner h2 {
    font-size: 28px;
  }
  .cta-banner {
    margin: 20px 16px;
    padding: 50px 24px;
  }
  .pricing-box {
    padding: 30px 24px;
  }
}

