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

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Header - Similar to stagetimer */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 64px;
}

.nav-brand h2 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #1a1a1a;
}

.nav-auth {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1a1a1a;
}

.btn-demo {
  padding: 8px 16px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.btn-demo:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Hero Section - Stagetimer style */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-left {
  color: white;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.highlight {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 500px;
}

.hero-cta {
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-note {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.trust-section {
  margin-top: 48px;
}

.trust-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.trust-text strong {
  color: white;
  font-weight: 700;
}

.trust-logos {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-logo {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

/* Product Demo - Right side */
.hero-right {
  position: relative;
  height: 600px;
}

.product-demo {
  position: relative;
  width: 100%;
  height: 100%;
}

.demo-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.main-dashboard {
  top: 50px;
  left: 0;
  width: 360px;
  padding: 20px;
  animation-delay: 0s;
}

.alert-card {
  top: 200px;
  right: 40px;
  width: 280px;
  padding: 16px;
  animation-delay: -2s;
}

.analytics-card {
  bottom: 80px;
  left: 60px;
  width: 240px;
  padding: 16px;
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #1a1a1a;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background: #8b5cf6;
}

.card-actions {
  margin-left: auto;
  color: #6b7280;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 12px;
  color: #6b7280;
}

.chart-area {
  height: 80px;
}

.chart-placeholder {
  background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
  border-radius: 6px;
  opacity: 0.8;
  position: relative;
  overflow: hidden;
}

.chart-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #a855f7;
}

.alert-badge {
  margin-left: auto;
  background: #fef3c7;
  color: #92400e;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.alert-card p {
  font-size: 13px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.alert-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-alert {
  background: #a855f7;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.alert-time {
  font-size: 11px;
  color: #6b7280;
}

.analytics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.analytics-item {
  text-align: center;
}

.analytics-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 4px;
}

.analytics-label {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.2;
}

.cloud-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 18px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Platform Section */
.platform {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.platform-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.platform-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.platform-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.platform-icon i {
  font-size: 24px;
  color: #3b82f6;
}

.platform-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.platform-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.feature-list li::before {
  content: "•";
  color: #3b82f6;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Command Center Section */
.command-center {
  background: white;
  padding: 80px 0;
}

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

.section-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.section-content p {
  font-size: 18px;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #6b7280;
}

.command-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.command-feature {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.command-feature:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid #dbeafe;
}

.feature-icon i {
  font-size: 28px;
  color: #3b82f6;
}

.command-feature h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.command-feature p {
  color: #6b7280;
  line-height: 1.6;
  font-size: 15px;
}

/* Results Section */
.results {
  padding: 80px 0;
  background: #f9fafb;
}

.results-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.results-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.results-text p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}

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

.result-stat {
  text-align: center;
}

.result-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 8px;
}

.result-stat .stat-label {
  font-size: 14px;
  color: #6b7280;
}

.results-cases {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-study {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.case-study h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.case-study p {
  color: #6b7280;
  margin-bottom: 16px;
  font-size: 14px;
}

.case-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.case-metrics .metric {
  background: #eff6ff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #3b82f6;
}

/* Solutions Section */
.solutions {
  padding: 80px 0;
  background: white;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.solution-card {
  background: #f9fafb;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.solution-header i {
  font-size: 24px;
  color: #3b82f6;
}

.solution-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
}

.solution-card p {
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.solution-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: #eff6ff;
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #f9fafb;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-weight: 500;
  color: #6b7280;
  font-size: 15px;
}

.discount-badge {
  background: #8b5cf6;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  transition: 0.3s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #3b82f6;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.pricing-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid #3b82f6;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.pricing-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.pricing-card.featured:hover {
  transform: translateY(-4px) scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #3b82f6;
  color: white;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 700;
}

.pricing-header p {
  color: #6b7280;
  margin-bottom: 24px;
  font-size: 15px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 32px;
}

.currency {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
}

.amount {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 4px;
}

.period {
  font-size: 16px;
  color: #6b7280;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #6b7280;
}

.pricing-features i {
  color: #8b5cf6;
  font-size: 14px;
}

.pricing-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  font-size: 15px;
}

.pricing-cta:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.contact-info p {
  color: #6b7280;
  margin-bottom: 32px;
  font-size: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.contact-item i {
  color: #3b82f6;
  font-size: 18px;
  width: 20px;
}

.contact-item span {
  font-weight: 500;
  color: #1a1a1a;
  font-size: 15px;
}

.contact-item a:hover {
  color: #3b82f6 !important;
}

.contact-form {
  background: #f9fafb;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.contact-form h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.contact-form button:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.success-message {
  background: #8b5cf6;
  color: white;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #3b82f6;
  font-weight: 800;
}

.footer-brand p {
  color: #9ca3af;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  margin-bottom: 16px;
  color: #3b82f6;
  font-weight: 600;
  font-size: 14px;
}

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

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

.footer-column ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

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

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
  color: #9ca3af;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-right {
    height: 400px;
  }

  .main-dashboard {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
  }

  .alert-card,
  .analytics-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 16px 2rem;
    height: 64px;
    flex-direction: row;
  }

  .nav-menu {
    display: none;
  }

  .nav-auth {
    flex-direction: row;
    gap: 16px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 48px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .results-content,
  .contact-content,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .results-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .section-header h2 {
    font-size: 28px;
  }

  .trust-logos {
    justify-content: center;
  }
}

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

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

  .hero-subtitle {
    font-size: 15px;
  }

  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .platform,
  .command-center,
  .results,
  .solutions,
  .pricing,
  .contact-section {
    padding: 48px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-header p {
    font-size: 16px;
  }
}
