/* ============================================
   JBTB SCREENMOBILE LLC - Main Stylesheet
   Modern, Responsive, Professional Design
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: #555;
}

a {
  color: #1a5fb4;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0d3a7a;
}

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

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

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

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

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

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a5fb4, #3584e4);
  border-radius: 3px;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a5fb4;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: #0d3a7a;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a5fb4;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #1a5fb4;
}

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

/* Mobile Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  position: relative;
  transition: background 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: #333;
  transition: transform 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.hamburger.active {
  background: transparent;
}

.hamburger.active::before {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active::after {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 650px;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: #fff;
  color: #1a5fb4;
  border-color: #fff;
}

.btn-primary:hover {
  background: transparent;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-block {
  width: 100%;
}

/* ============================================
   About Section
   ============================================ */
.about {
  background: #f8f9fa;
}

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

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5fb4;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   Business Model / How We Work
   ============================================ */
.business-model {
  background: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -15px;
  width: 30px;
  height: 2px;
  background: #1a5fb4;
}

.step:last-child::after {
  display: none;
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5fb4, #3584e4);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   Why Choose Us
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: #1a5fb4;
  box-shadow: 0 10px 30px rgba(26,95,180,0.1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(26,95,180,0.1), rgba(53,132,228,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #1a5fb4;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
}

.benefit h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.benefit p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  background: #f8f9fa;
}

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

.contact-info h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5fb4, #3584e4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.contact-details h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-details p {
  margin-bottom: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a5fb4;
  box-shadow: 0 0 0 4px rgba(26,95,180,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #1a5fb4;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.checkbox-group label a {
  color: #1a5fb4;
  text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 0 30px;
}

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

.footer-section h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 15px;
}

.footer-section h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

.footer-section ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section address {
  font-style: normal;
}

.footer-section address p {
  margin-bottom: 10px;
}

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-disclaimer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0;
  text-align: center;
}

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

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}

/* ============================================
   Cookie Banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cookie-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: #1a5fb4;
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #0d3a7a;
}

.cookie-btn-reject {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
}

.cookie-btn-reject:hover {
  background: #f5f5f5;
}

.cookie-btn-settings {
  background: transparent;
  color: #1a5fb4;
  border: 1px solid #1a5fb4;
}

.cookie-btn-settings:hover {
  background: rgba(26,95,180,0.1);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 25px 25px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.cookie-modal-header h2 {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}

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

.cookie-category {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

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

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

.cookie-category-header label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-category-header input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #1a5fb4;
}

.cookie-category-status {
  font-size: 0.8rem;
  color: #28a745;
  font-weight: 600;
}

.cookie-category-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
  padding-left: 28px;
}

.cookie-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.cookie-btn-save {
  width: 100%;
  padding: 14px;
  background: #1a5fb4;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-btn-save:hover {
  background: #0d3a7a;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
  padding-top: 120px;
  padding-bottom: 60px;
}

.legal-header {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
  color: #fff;
  margin-top: 70px;
}

.legal-header h1 {
  color: #fff;
  margin-bottom: 10px;
}

.legal-date {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
}

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

.legal-text h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1a5fb4;
}

.legal-text h3 {
  font-size: 1.25rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-text p,
.legal-text ul,
.legal-text ol {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-text ul,
.legal-text ol {
  padding-left: 30px;
}

.legal-text li {
  margin-bottom: 10px;
}

.legal-text table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.legal-text th,
.legal-text td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.legal-text th {
  background: #f8f9fa;
  font-weight: 600;
}

/* ============================================
   Page Hero (for inner pages)
   ============================================ */
.page-hero,
.about-hero,
.contact-hero {
  position: relative;
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.page-hero .hero-image,
.about-hero .hero-image,
.contact-hero .hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.page-hero .container,
.about-hero .container,
.contact-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.about-hero h1,
.contact-hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-hero .hero-subtitle,
.about-hero .hero-subtitle,
.contact-hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 0;
}

/* ============================================
   Business Hours Table
   ============================================ */
.hours-table-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #333;
}

.hours-table td:last-child {
  text-align: right;
  color: #666;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr:hover td {
  background: #f8f9fa;
}

/* ============================================
   Map Section
   ============================================ */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  display: block;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #1a5fb4 0%, #0d3a7a 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Form Message
   ============================================ */
.form-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 0.95rem;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.field-error {
  font-size: 0.85rem;
  color: #dc3545;
  margin-top: 5px;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .step::after {
    display: none;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1.25rem;
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 30px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
