/* BoxingBagStore.com - Modern Template CSS */
/* Color scheme: Dark navy (#1a1a2e), Red accent (#e63946), White (#f8f9fa), Dark text (#212529) */

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

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

:root {
  --navy: #1a1a2e;
  --navy-light: #16213e;
  --red: #e63946;
  --red-dark: #c5303c;
  --white: #f8f9fa;
  --dark: #212529;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

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

a:hover {
  color: var(--red-dark);
}

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

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

/* ===== Top Bar ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left span {
  color: var(--gray-400);
}

.top-bar-left strong {
  color: var(--white);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.free-shipping-badge {
  background: var(--red);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Header ===== */
.site-header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--red);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  max-height: 50px;
  width: auto;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  color: var(--red);
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.search-bar {
  flex: 1;
  max-width: 450px;
}

.search-bar form {
  display: flex;
  border: 2px solid var(--gray-300);
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
}

.search-bar form:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  min-width: 0;
}

.search-bar button {
  background: var(--red);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.search-bar button:hover {
  background: var(--red-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  white-space: nowrap;
}

.header-phone span {
  color: var(--red);
  font-weight: 700;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ===== Navigation ===== */
.main-nav {
  background: var(--navy);
  position: relative;
}

.main-nav .container {
  display: flex;
  align-items: stretch;
}

.nav-list {
  display: flex;
  list-style: none;
  width: 100%;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-item:hover > a,
.nav-item.active > a {
  background: rgba(255,255,255,0.1);
  color: var(--red);
}

.nav-item.has-dropdown > a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
  border-top: 3px solid var(--red);
}

.nav-item:hover .dropdown {
  display: block;
  animation: fadeInDown 0.2s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--dark);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--gray-100);
  color: var(--red);
  padding-left: 25px;
}

.dropdown a.view-all {
  font-weight: 600;
  color: var(--red);
  background: var(--gray-100);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

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

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,57,70,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 500px;
  line-height: 1.7;
}

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

.hero-image {
  flex: 0 0 400px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230,57,70,0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: white;
  color: var(--navy);
  border-color: white;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* ===== Section Styling ===== */
.section {
  padding: 70px 0;
}

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

.section-title h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title .underline {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ===== Category Grid ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  color: var(--dark);
  display: block;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  color: var(--dark);
}

.category-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--gray-100);
}

.category-card-body {
  padding: 20px 15px;
}

.category-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0;
}

.category-card:hover .category-card-body h3 {
  color: var(--red);
}

/* ===== Product Cards ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  list-style: none;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-image {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 15px;
  background: var(--gray-100);
  transition: var(--transition);
}

.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-body {
  padding: 20px;
  border-top: 1px solid var(--gray-200);
}

.product-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card:hover .product-card-name {
  color: var(--red);
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price-sale {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
}

.price-original {
  font-size: 0.9rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.price-single {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.product-card-footer {
  padding: 0 20px 20px;
}

.btn-add-cart {
  width: 100%;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  transition: var(--transition);
}

.btn-add-cart:hover {
  background: var(--red);
}

/* ===== Product Detail Page ===== */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.breadcrumbs a {
  color: var(--gray-600);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs span {
  margin: 0 8px;
  color: var(--gray-400);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 30px 0 60px;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-image {
  width: 100%;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
  padding: 20px;
  border: 1px solid var(--gray-200);
}

.product-main-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
}

.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-thumb {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--red);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.product-info h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--navy);
}

.product-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.product-price-detail {
  margin-bottom: 25px;
  padding: 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.product-price-detail .price-sale {
  font-size: 2rem;
}

.product-price-detail .price-original {
  font-size: 1.2rem;
}

.product-save {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 10px;
}

.product-description {
  margin: 30px 0;
}

.product-description h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}

.product-description p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 15px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #166534;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.stock-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
}

.free-ship-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ===== Page Title / Category ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 50px 0;
  color: white;
  text-align: center;
}

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

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
}

/* ===== Content Section ===== */
.content-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.content-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

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

.content-section img {
  border-radius: var(--radius);
  margin: 15px 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

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

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

.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--red);
  padding-left: 5px;
}

.footer-contact {
  margin-top: 15px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.footer-contact strong {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-payments {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-payments span {
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ===== Sidebar ===== */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
  padding: 40px 0 60px;
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  margin-bottom: 8px;
}

.sidebar-widget a {
  color: var(--gray-700);
  font-size: 0.88rem;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 4px 0;
}

.sidebar-widget a:hover {
  color: var(--red);
  padding-left: 5px;
}

.sidebar-widget .sub-list {
  padding-left: 15px;
  border-left: 2px solid var(--gray-200);
  margin: 5px 0 10px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-image {
    flex: 0 0 auto;
    order: 0;
  }
  
  .hero p {
    margin: 0 auto 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .product-gallery {
    position: static;
  }
  
  .layout-with-sidebar {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .sidebar-widget {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--navy);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav .container {
    flex-direction: column;
    padding: 0;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-item > a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
  }
  
  .dropdown a {
    padding-left: 40px;
    font-size: 0.85rem;
  }
  
  .nav-item.open .dropdown {
    display: block;
  }
  
  .hero {
    padding: 50px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-image {
    flex: 0 0 auto;
    max-width: 280px;
  }
  
  .search-bar {
    max-width: 100%;
    order: 3;
    width: 100%;
  }
  
  .header-inner {
    flex-wrap: wrap;
  }
  
  .header-phone {
    display: none;
  }
  
  .top-bar {
    display: none;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .product-card-image {
    height: 150px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 40px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Page Header */
.page-header {
  background: var(--navy);
  color: white;
  padding: 3rem 0;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: white;
}

/* Content Section */
.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--red);
}
.content-section h2:first-child {
  margin-top: 0;
}
.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.content-section ul, .content-section ol {
  margin: 0 0 1rem 1.5rem;
  color: var(--gray-700);
}
.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.content-section a {
  color: var(--red);
  text-decoration: underline;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin-top: 2rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group textarea {
  resize: vertical;
}
