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

:root {
  --color-primary: #2d5a4a;
  --color-secondary: #c9a86c;
  --color-accent: #8b4c3a;
  --color-light: #f5f0e8;
  --color-dark: #1a1a1a;
  --color-gray: #6b7280;
  --color-gray-light: #e5e7eb;
  --color-white: #ffffff;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
}

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

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

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

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

/* Header */
.header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 40px;
  height: 40px;
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 5px 0;
}

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

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

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: 20px;
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 15px;
  font-weight: 500;
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.mobile-nav-link:hover {
  background-color: var(--color-light);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3d7a6a 100%);
  color: var(--color-white);
  padding: 60px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 30px;
}

.hero-icon {
  margin-bottom: 25px;
}

.hero-icon svg {
  width: 80px;
  height: 80px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background-color: #b89555;
  color: var(--color-dark);
}

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

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

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

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

/* Section Styles */
.section {
  padding: 60px 20px;
}

.section-alt {
  background-color: var(--color-light);
}

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

.section-title {
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  text-align: center;
}

.section-dark .section-title {
  color: var(--color-white);
}

.section-subtitle {
  color: var(--color-gray);
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.85);
}

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  flex: 1 1 280px;
  max-width: 380px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.card p {
  color: var(--color-gray);
  line-height: 1.7;
}

/* Service Cards */
.service-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 400px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--color-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  padding: 40px 0;
}

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

.feature-content h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--color-gray);
  line-height: 1.8;
}

.feature-visual {
  width: 100%;
  max-width: 300px;
}

.feature-visual svg {
  width: 100%;
  height: auto;
}

/* Stats Section */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 150px;
  max-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.section-dark .stat-number {
  color: var(--color-secondary);
}

.stat-label {
  color: var(--color-gray);
  font-size: 0.95rem;
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.85);
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.testimonial {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  flex: 1 1 300px;
  max-width: 400px;
  position: relative;
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 15px;
}

.testimonial p {
  color: var(--color-gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-dark);
}

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

.faq-item {
  border-bottom: 1px solid var(--color-gray-light);
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  padding: 0;
  font-family: inherit;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-secondary);
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-top: 15px;
  color: var(--color-gray);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.15rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.step-content p {
  color: var(--color-gray);
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.contact-block {
  flex: 1 1 300px;
  max-width: 400px;
}

.contact-block h3 {
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-block p {
  color: var(--color-gray);
  line-height: 1.8;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.value-item {
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
  padding: 25px;
}

.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-item h3 {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.value-item p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.benefit-check {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 100%;
  height: 100%;
}

.benefit-content h4 {
  font-size: 1.05rem;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.benefit-content p {
  color: var(--color-gray);
  font-size: 0.95rem;
}

/* Quote Block */
.quote-block {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 60px 30px;
  text-align: center;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.quote-author {
  font-weight: 600;
  color: var(--color-secondary);
}

/* Timeline / Milestones */
.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-gray-light);
}

.timeline-item {
  padding-left: 60px;
  padding-bottom: 30px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 22px;
  height: 22px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

.timeline-year {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.timeline-content p {
  color: var(--color-gray);
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

.comparison-table th {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--color-light);
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  background-color: var(--color-light);
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
}

/* Trust Indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  width: 40px;
  height: 40px;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-text {
  font-weight: 600;
  color: var(--color-dark);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3d7a6a 100%);
  color: var(--color-white);
  padding: 60px 20px;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 1.75rem;
  margin-bottom: 15px;
}

.cta-content p {
  opacity: 0.95;
  margin-bottom: 30px;
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 50px 20px 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

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

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

.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-secondary);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 25px;
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 20px;
  z-index: 2000;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.cookie-content a {
  color: var(--color-secondary);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.cookie-btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  border: none;
  transition: all var(--transition);
}

.cookie-accept {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

.cookie-accept:hover {
  background-color: #b89555;
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.5);
}

.cookie-reject:hover {
  background-color: rgba(255,255,255,0.1);
}

.cookie-settings {
  background-color: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.cookie-settings:hover {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay.active {
  display: flex;
}

.cookie-modal {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 25px;
  border-bottom: 1px solid var(--color-gray-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  font-size: 1.25rem;
  color: var(--color-dark);
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--color-gray);
  line-height: 1;
  padding: 0;
}

.cookie-modal-close:hover {
  color: var(--color-dark);
}

.cookie-modal-body {
  padding: 25px;
}

.cookie-option {
  padding: 15px 0;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cookie-option-title {
  font-weight: 600;
  color: var(--color-dark);
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-light);
  border-radius: 26px;
  transition: var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-option-desc {
  font-size: 0.9rem;
  color: var(--color-gray);
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--color-gray-light);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3d7a6a 100%);
  color: var(--color-white);
  padding: 50px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-header p {
  opacity: 0.9;
}

/* Content Pages */
.content-section {
  padding: 50px 20px;
}

.content-section h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  margin-top: 30px;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  color: var(--color-gray);
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-section ul {
  margin-bottom: 15px;
  padding-left: 25px;
}

.content-section li {
  color: var(--color-gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Thank You Page */
.thank-you-section {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.thank-you-icon svg {
  width: 100%;
  height: 100%;
}

.thank-you-section h1 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.thank-you-section p {
  color: var(--color-gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* About Page Specifics */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
}

.team-avatar {
  width: 120px;
  height: 120px;
  background-color: var(--color-light);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 60px;
  height: 60px;
}

.team-member h3 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.team-member p {
  color: var(--color-gray);
  font-size: 0.9rem;
}

/* Highlighted Panel */
.highlight-panel {
  background-color: var(--color-light);
  border-left: 4px solid var(--color-secondary);
  padding: 25px 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 30px 0;
}

.highlight-panel h3 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.highlight-panel p {
  color: var(--color-gray);
  margin: 0;
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 100px 40px;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-icon svg {
    width: 100px;
    height: 100px;
  }

  .section {
    padding: 80px 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-block {
    flex-direction: row;
    text-align: left;
  }

  .feature-block.reverse {
    flex-direction: row-reverse;
  }

  .feature-content {
    text-align: left;
    flex: 1;
  }

  .feature-visual {
    flex: 0 0 40%;
  }

  .cookie-content {
    flex-direction: row;
    text-align: left;
  }

  .page-header {
    padding: 70px 40px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 3rem;
  }

  .quote-text {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section {
    padding: 100px 40px;
  }
}
