/* ============================================
   ANCIENT SAILS MEDIA - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Industrial Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e8e8e8;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 36px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 20px; margin-bottom: 12px; }

p {
  margin-bottom: 16px;
  color: #b8b8b8;
  font-size: 16px;
}

a {
  color: #D4A574;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #E8DCC4;
  text-decoration: none;
}

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

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

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

/* HEADER - Industrial Steel */
.site-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 20px 0;
  border-bottom: 3px solid #D4A574;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(212, 165, 116, 0.3));
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: #D4A574;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4A574;
  transition: width 0.3s ease;
}

.main-nav a:hover::before {
  width: 100%;
}

.main-nav a:hover {
  color: #E8DCC4;
  border-color: #D4A574;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #2C5F7C;
  color: #E8DCC4;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #D4A574;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  border-left: 3px solid #D4A574;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #D4A574;
  color: #E8DCC4;
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #D4A574;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #D4A574;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border: 1px solid #3a3a3a;
  border-left: 4px solid #D4A574;
  background: rgba(42, 42, 42, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background: #2C5F7C;
  color: #E8DCC4;
  transform: translateX(10px);
  border-left-color: #E8DCC4;
}

/* HERO SECTION - Industrial Impact */
.hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #D4A574;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 165, 116, 0.03) 10px,
    rgba(212, 165, 116, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #E8DCC4;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.subheadline {
  font-size: 20px;
  color: #D4A574;
  margin-bottom: 32px;
  line-height: 1.6;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(232, 220, 196, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: #2C5F7C;
  border-color: #2C5F7C;
  color: #E8DCC4;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.4);
}

.btn-primary:hover {
  background: #D4A574;
  border-color: #D4A574;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  background: transparent;
  border-color: #D4A574;
  color: #D4A574;
}

.btn-secondary:hover {
  background: #D4A574;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
}

.trust-badge {
  display: inline-block;
  background: rgba(42, 42, 42, 0.8);
  border: 2px solid #D4A574;
  border-left: 5px solid #D4A574;
  padding: 12px 24px;
  color: #E8DCC4;
  font-weight: 600;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* SECTIONS - Industrial Layout */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.featured-stories,
.services-preview,
.value-proposition,
.community-impact,
.testimonials,
.cta-section,
.contact-preview {
  background: #2a2a2a;
  padding: 60px 20px;
  margin-bottom: 40px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #D4A574;
  position: relative;
}

.section h2,
.featured-stories h2,
.services-preview h2 {
  text-align: center;
  color: #E8DCC4;
  margin-bottom: 40px;
  font-size: 40px;
  position: relative;
  padding-bottom: 20px;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #D4A574;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #b8b8b8;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CARDS & GRIDS - Flexbox Only */
.stories-grid,
.services-grid,
.benefits-grid,
.stats-grid,
.events-grid,
.coverage-list,
.articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.story-card,
.service-card,
.benefit-item,
.event-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  border: 1px solid #3a3a3a;
  border-left: 4px solid #D4A574;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.story-card:hover,
.service-card:hover,
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
  border-left-color: #E8DCC4;
}

.story-category,
.event-category,
.archive-category {
  display: inline-block;
  background: #2C5F7C;
  color: #E8DCC4;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-left: 3px solid #D4A574;
}

.story-card h3,
.service-card h3,
.benefit-item h3,
.event-card h3 {
  color: #E8DCC4;
  margin-bottom: 12px;
  font-size: 20px;
}

.story-card p,
.service-card p,
.benefit-item p,
.event-card p {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 16px;
}

.story-date,
.event-date {
  display: block;
  color: #D4A574;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price,
.price-display {
  display: inline-block;
  background: #D4A574;
  color: #1a1a1a;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  border-left: 4px solid #2C5F7C;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.read-more {
  display: inline-block;
  color: #D4A574;
  font-weight: 600;
  margin-top: 12px;
  padding: 8px 16px;
  border: 1px solid #D4A574;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.read-more:hover {
  background: #D4A574;
  color: #1a1a1a;
  transform: translateX(5px);
}

/* STATS - Industrial Numbers */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin-bottom: 40px;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  border: 2px solid #3a3a3a;
  border-top: 4px solid #D4A574;
  position: relative;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
  font-size: 14px;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TESTIMONIALS - Dark Background with Light Text */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  border-left: 4px solid #D4A574;
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e8e8e8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #E8DCC4;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #D4A574;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a1a1a 100%);
  text-align: center;
  padding: 80px 20px;
  border: 3px solid #D4A574;
  position: relative;
}

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

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.features-list li {
  color: #E8DCC4;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  font-size: 16px;
  position: relative;
  padding-left: 30px;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: 700;
}

.trust-element {
  color: #D4A574;
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 60px 20px 40px;
  border-bottom: 3px solid #D4A574;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #D4A574;
}

.breadcrumb span {
  color: #E8DCC4;
}

/* FORMS - Industrial Input Design */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #2a2a2a;
  padding: 40px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #D4A574;
}

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

.field-group label {
  display: block;
  color: #E8DCC4;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea,
.email-input,
.search-input {
  width: 100%;
  padding: 14px 16px;
  background: #1a1a1a;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #D4A574;
  color: #E8DCC4;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.email-input:focus,
.search-input:focus {
  outline: none;
  border-color: #D4A574;
  background: #252525;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b8b8b8;
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.btn-full {
  width: 100%;
  margin-top: 24px;
}

.form-note-small {
  color: #b8b8b8;
  font-size: 12px;
  margin-top: 12px;
  text-align: center;
}

/* FILTER BAR */
.filter-bar {
  background: #2a2a2a;
  padding: 24px 20px;
  margin-bottom: 40px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #D4A574;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
}

.filter-group label {
  color: #E8DCC4;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-filter,
.date-filter,
.sort-options,
.frequency-selector {
  padding: 12px 16px;
  background: #1a1a1a;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #D4A574;
  color: #E8DCC4;
  font-size: 14px;
  cursor: pointer;
}

/* FOOTER - Industrial Base */
.site-footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #b8b8b8;
  padding: 60px 20px 20px;
  border-top: 3px solid #D4A574;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-about,
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0.9);
}

.footer-about p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  color: #E8DCC4;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #D4A574;
  padding-bottom: 8px;
}

.footer-links nav,
.footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-legal a {
  color: #b8b8b8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-links a::before,
.footer-legal a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4A574;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover::before,
.footer-legal a:hover::before {
  opacity: 1;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #D4A574;
  padding-left: 24px;
}

.footer-contact p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #D4A574;
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border-top: 3px solid #D4A574;
  padding: 24px 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #E8DCC4;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #2C5F7C;
  border-color: #2C5F7C;
  color: #E8DCC4;
}

.cookie-accept:hover {
  background: #D4A574;
  border-color: #D4A574;
  color: #1a1a1a;
}

.cookie-reject {
  background: transparent;
  border-color: #888;
  color: #888;
}

.cookie-reject:hover {
  border-color: #E8DCC4;
  color: #E8DCC4;
}

.cookie-settings {
  background: transparent;
  border-color: #D4A574;
  color: #D4A574;
}

.cookie-settings:hover {
  background: #D4A574;
  color: #1a1a1a;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 3px solid #D4A574;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #D4A574;
  color: #E8DCC4;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #D4A574;
  color: #1a1a1a;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(26, 26, 26, 0.5);
  border-left: 4px solid #D4A574;
}

.cookie-category h3 {
  color: #E8DCC4;
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-category p {
  color: #b8b8b8;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #E8DCC4;
  font-size: 14px;
  cursor: pointer;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a1a1a 100%);
}

.legal-content {
  background: #2a2a2a;
  padding: 60px 20px;
  margin-bottom: 40px;
  border: 1px solid #3a3a3a;
  border-left: 5px solid #D4A574;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  color: #E8DCC4;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #3a3a3a;
  text-align: left;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: #D4A574;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.content-wrapper li {
  color: #b8b8b8;
  margin-bottom: 8px;
  line-height: 1.6;
}

.content-wrapper strong {
  color: #E8DCC4;
}

.last-updated,
.effective-date {
  color: #D4A574;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.data-processing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #1a1a1a;
}

.data-processing-table th,
.data-processing-table td {
  padding: 16px;
  text-align: left;
  border: 1px solid #3a3a3a;
}

.data-processing-table th {
  background: #2C5F7C;
  color: #E8DCC4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.data-processing-table td {
  color: #b8b8b8;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a1a1a 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #D4A574;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  border: 4px solid #E8DCC4;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
}

.confirmation-message {
  color: #D4A574;
  font-size: 16px;
  margin-top: 16px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.timeline-step {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
  border: 2px solid #3a3a3a;
  border-top: 4px solid #D4A574;
  position: relative;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #2C5F7C;
  color: #E8DCC4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 3px solid #D4A574;
}

.timeline-step h3 {
  color: #E8DCC4;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-step p {
  color: #b8b8b8;
  font-size: 14px;
}

/* ACCORDION */
.services-accordion,
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.service-item,
.faq-item {
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-left: 4px solid #D4A574;
  margin-bottom: 16px;
  overflow: hidden;
}

.service-item h3,
.faq-item h3 {
  color: #E8DCC4;
  padding: 20px 24px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: rgba(26, 26, 26, 0.5);
}

.service-item h3:hover,
.faq-item h3:hover {
  background: #2C5F7C;
}

.service-item h3::after,
.faq-item h3::after {
  content: '▼';
  color: #D4A574;
  font-size: 14px;
  transition: transform 0.3s ease;
}

.service-item.active h3::after,
.faq-item.active h3::after {
  transform: rotate(180deg);
}

.service-details {
  padding: 24px;
  display: none;
}

.service-item.active .service-details {
  display: block;
}

.faq-item p {
  padding: 0 24px 24px;
  color: #b8b8b8;
  line-height: 1.6;
  display: none;
}

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

.service-details h4 {
  color: #D4A574;
  margin-top: 20px;
  margin-bottom: 12px;
}

.service-details ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.service-details li {
  color: #b8b8b8;
  margin-bottom: 8px;
}

/* TABS */
.tabs-navigation {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid #3a3a3a;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #b8b8b8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  color: #D4A574;
}

.tab-button.active {
  color: #E8DCC4;
  border-bottom-color: #D4A574;
  background: rgba(44, 95, 124, 0.1);
}

/* ALERT BANNER */
.alert-banner {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a1a1a 100%);
  border: 2px solid #D4A574;
  border-left: 5px solid #D4A574;
  padding: 20px 24px;
  color: #E8DCC4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.alert-banner strong {
  color: #D4A574;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timestamp {
  color: #b8b8b8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* MISC ELEMENTS */
.vintage-badge {
  display: inline-block;
  background: #D4A574;
  color: #1a1a1a;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  border-left: 3px solid #2C5F7C;
}

.value-badge {
  display: inline-block;
  background: #2C5F7C;
  color: #E8DCC4;
  padding: 8px 16px;
  margin: 8px;
  border-left: 3px solid #D4A574;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 24px auto;
  flex-wrap: wrap;
}

.newsletter-form .email-input {
  flex: 1 1 250px;
}

.newsletter-form .frequency-selector {
  flex: 0 1 150px;
}

.privacy-notice {
  text-align: center;
  font-size: 13px;
  color: #b8b8b8;
  margin-top: 16px;
}

.subscriber-count {
  text-align: center;
  color: #D4A574;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .story-card,
  .service-card,
  .event-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  /* Mobile Menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Cards */
  .story-card,
  .service-card,
  .benefit-item,
  .event-card,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-about,
  .footer-links,
  .footer-legal,
  .footer-contact {
    flex: 1 1 100%;
  }
  
  /* Forms */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .email-input,
  .newsletter-form .frequency-selector {
    flex: 1 1 100%;
  }
  
  /* Filters */
  .filters {
    flex-direction: column;
  }
  
  .filter-group {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .timeline-step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Alert Banner */
  .alert-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Tabs */
  .tabs-navigation {
    overflow-x: auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .section,
  .featured-stories,
  .services-preview {
    padding: 40px 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .form-container {
    padding: 24px 16px;
  }
  
  .cookie-modal-content {
    padding: 24px 16px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Apply animations */
.story-card,
.service-card,
.event-card {
  animation: fadeIn 0.6s ease forwards;
}

.success-icon {
  animation: pulse 2s ease infinite;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .site-header {
    border-bottom: 2px solid black;
  }
}