/* =================================================================
   ArtCapital - Monochrome Sophisticated Design
   Comprehensive CSS Styles - Mobile First Approach
   ================================================================= */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Monochrome Sophisticated */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 16px;
}

h1 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

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

a:hover {
  color: #666666;
}

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

ul {
  list-style: none;
}

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

/* BUTTONS - Sophisticated Monochrome */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #333333;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #333333;
}

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

.mobile-nav a {
  padding: 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #666666;
}

/* HEADER */
header {
  background-color: #ffffff;
  padding: 24px 0;
  border-bottom: 2px solid #000000;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

header img {
  max-width: 180px;
  height: auto;
}

.tagline {
  font-style: italic;
  color: #666666;
  font-size: 14px;
  text-align: center;
}

header nav {
  display: none;
}

header nav a {
  margin: 0 16px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
  gap: 16px;
}

/* HERO SECTION - Dramatic Contrast */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

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

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

.hero h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p,
.hero .subheadline {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.hero-cta .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.hero-cta .btn-primary:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #000000;
}

.trust-badge {
  color: #cccccc;
  font-size: 14px;
  font-style: italic;
}

/* SECTIONS - Clean Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 32px;
}

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #4a4a4a;
  font-size: 18px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit {
  background-color: #ffffff;
  padding: 32px 24px;
  border: 2px solid #000000;
  text-align: center;
  flex: 1 1 100%;
  min-width: 250px;
  transition: all 0.3s ease;
}

.benefit:hover {
  background-color: #000000;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.benefit:hover h3,
.benefit:hover p {
  color: #ffffff;
}

.benefit h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #000000;
}

.benefit p {
  color: #4a4a4a;
  font-size: 16px;
}

/* SERVICES GRID */
.services-overview,
.services {
  background-color: #ffffff;
}

.services-grid,
.service-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.service-detail {
  background-color: #fafafa;
  padding: 32px;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #000000;
  flex: 1 1 100%;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover,
.service-detail:hover {
  border-left-width: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card h3,
.service-detail h2 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: left;
}

.service-card p,
.service-detail p {
  color: #4a4a4a;
  margin-bottom: 12px;
  text-align: left;
}

.service-card .price,
.service-detail .price {
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.service-detail .tagline {
  font-size: 16px;
  color: #666666;
  font-style: italic;
  margin-bottom: 16px;
}

.service-detail h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-detail ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.service-detail ul li {
  margin-bottom: 8px;
  color: #4a4a4a;
}

/* PROCESS STEPS */
.process {
  background-color: #f8f8f8;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.step {
  background-color: #ffffff;
  padding: 32px 24px;
  border: 2px solid #000000;
  flex: 1 1 100%;
  position: relative;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 40px;
  height: 40px;
  background-color: #000000;
  border: 2px solid #000000;
}

.step:hover {
  border-color: #666666;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  padding-top: 8px;
  text-align: left;
}

.step p {
  color: #4a4a4a;
  text-align: left;
}

/* EXPERTISE */
.expertise {
  background-color: #ffffff;
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.expertise-area {
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  text-align: center;
  flex: 1 1 100%;
  min-width: 200px;
  transition: all 0.3s ease;
}

.expertise-area:hover {
  background-color: #333333;
  transform: scale(1.05);
}

.expertise-area h3 {
  color: #ffffff;
  font-size: 20px;
}

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

.metric {
  text-align: center;
  flex: 1 1 150px;
  padding: 24px;
  background-color: #f8f8f8;
  border: 1px solid #e0e0e0;
}

.metric h4 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 8px;
}

.metric p {
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TESTIMONIALS - High Contrast */
.testimonials {
  background-color: #f8f8f8;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 40px;
  border-left: 4px solid #000000;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card strong,
.testimonial-card cite {
  color: #000000;
  font-style: normal;
  font-weight: 700;
}

/* MISSION & STORY */
.mission,
.story,
.approach {
  background-color: #ffffff;
}

.mission h3,
.story h3,
.approach h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: left;
}

.mission ul,
.credentials ul {
  list-style: none;
  padding-left: 0;
}

.mission ul li,
.credentials ul li {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #2a2a2a;
}

.mission ul li strong {
  color: #000000;
  font-weight: 700;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.milestone {
  padding: 24px;
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
  position: relative;
}

.milestone h3 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 12px;
  text-align: left;
}

.milestone p {
  color: #4a4a4a;
  text-align: left;
}

/* TEAM */
.team {
  background-color: #f8f8f8;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-member {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #000000;
  flex: 1 1 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  background-color: #000000;
  color: #ffffff;
}

.team-member:hover h3,
.team-member:hover p {
  color: #ffffff;
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #000000;
}

.team-member p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 8px;
}

/* CATEGORIES & ARTICLES */
.categories,
.featured,
.insights-list {
  background-color: #ffffff;
}

.category-grid,
.article-grid,
.articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category,
article {
  background-color: #fafafa;
  padding: 32px;
  border: 1px solid #e0e0e0;
  flex: 1 1 100%;
  transition: all 0.3s ease;
}

.category:hover,
article:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.category h3,
article h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
  text-align: left;
}

.category p,
article p {
  color: #4a4a4a;
  text-align: left;
}

article .meta {
  font-size: 14px;
  color: #999999;
  margin-top: 12px;
}

/* STATISTICS */
.statistics,
.stats-grid {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  padding: 24px;
  background-color: #1a1a1a;
  border: 2px solid #333333;
}

.stat h3,
.statistics h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 12px;
}

.stat p {
  color: #cccccc;
  font-size: 16px;
}

/* PORTFOLIO TYPES */
.portfolio-types,
.intro,
.philosophy {
  background-color: #ffffff;
}

.types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.type {
  background-color: #fafafa;
  padding: 32px;
  border: 2px solid #e0e0e0;
  flex: 1 1 100%;
  transition: all 0.3s ease;
}

.type:hover {
  border-color: #000000;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.type h3 {
  font-size: 22px;
  margin-bottom: 12px;
  text-align: left;
}

.type p {
  color: #4a4a4a;
  text-align: left;
}

.disclaimer {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  text-align: center;
  margin-top: 24px;
}

/* CASE STUDIES */
.case-studies {
  background-color: #f8f8f8;
}

.case-study {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-study h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: left;
}

.case-study p {
  margin-bottom: 12px;
  color: #2a2a2a;
  text-align: left;
}

.case-study .performance {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
}

.case-study .note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 12px;
}

.philosophy ul {
  list-style: none;
  padding-left: 0;
}

.philosophy ul li {
  padding: 16px 24px;
  margin-bottom: 12px;
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
  color: #2a2a2a;
}

/* CONTACT OPTIONS */
.contact-options {
  background-color: #f8f8f8;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.option {
  background-color: #ffffff;
  padding: 32px;
  border: 2px solid #e0e0e0;
  flex: 1 1 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.option:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.option h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.option .highlight {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 12px;
  display: block;
}

.option p {
  color: #666666;
  font-size: 14px;
}

/* CONTACT FORM SECTION */
.contact-form-section {
  background-color: #ffffff;
}

.form-note {
  background-color: #f8f8f8;
  padding: 32px;
  border: 2px solid #e0e0e0;
  border-left: 4px solid #000000;
  margin-top: 32px;
}

.form-note p {
  color: #2a2a2a;
  margin-bottom: 12px;
}

/* LOCATION */
.location {
  background-color: #f8f8f8;
}

.location-details,
.directions {
  background-color: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid #e0e0e0;
}

.location-details h3,
.location-details h4,
.directions h4 {
  font-size: 20px;
  margin-bottom: 16px;
  margin-top: 20px;
  text-align: left;
}

.location-details p,
.directions p {
  color: #4a4a4a;
  margin-bottom: 12px;
  text-align: left;
}

.location .note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* FAQ */
.faq {
  background-color: #ffffff;
}

.faq-item {
  background-color: #f8f8f8;
  padding: 24px;
  margin-bottom: 16px;
  border-left: 4px solid #000000;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #000000;
  text-align: left;
}

.faq-item p {
  color: #4a4a4a;
  text-align: left;
}

/* NEXT STEPS */
.next-steps,
.preparation,
.urgent-contact {
  background-color: #ffffff;
}

.steps-grid,
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.steps .step,
.steps-grid .step {
  background-color: #fafafa;
  padding: 24px;
  border: 2px solid #e0e0e0;
  flex: 1 1 100%;
  text-align: center;
  min-width: 200px;
}

.steps .step h3,
.steps-grid .step h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.steps .step p,
.steps-grid .step p {
  color: #666666;
  font-size: 14px;
}

.next-steps .note,
.preparation p,
.urgent-contact p {
  text-align: center;
  color: #666666;
  font-size: 14px;
  margin-top: 24px;
}

.preparation ul {
  list-style: disc;
  padding-left: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.preparation ul li {
  margin-bottom: 12px;
  color: #4a4a4a;
  text-align: left;
}

/* TRUST ELEMENTS */
.trust,
.trust-mini {
  background-color: #f8f8f8;
  text-align: center;
}

.trust-elements,
.trust-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.trust-item {
  background-color: #ffffff;
  padding: 24px;
  border: 2px solid #000000;
  flex: 1 1 200px;
  text-align: center;
}

.trust-item p {
  color: #2a2a2a;
  font-weight: 600;
}

.trust .privacy,
.trust-mini p:last-child {
  font-size: 14px;
  color: #999999;
  margin-top: 32px;
}

/* CONTINUE BROWSING */
.continue-browsing {
  background-color: #ffffff;
  text-align: center;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.links-grid a {
  background-color: #fafafa;
  padding: 16px 24px;
  border: 2px solid #e0e0e0;
  flex: 1 1 200px;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.links-grid a:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* NEWSLETTER */
.newsletter {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
}

.newsletter h2 {
  color: #ffffff;
}

.newsletter p {
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto 32px;
}

.newsletter-benefits ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.newsletter-benefits ul li {
  background-color: #1a1a1a;
  padding: 12px 24px;
  border: 1px solid #333333;
  color: #ffffff;
}

.newsletter .note {
  font-size: 14px;
  color: #999999;
}

/* CTA SECTIONS */
.cta {
  background-color: #f8f8f8;
  text-align: center;
  padding: 60px 20px;
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}

.cta h2 {
  margin-bottom: 16px;
}

.cta p {
  color: #666666;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background-color: #f8f8f8;
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero p {
  color: #666666;
  margin-bottom: 12px;
}

.thank-you-hero .confirmation {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

/* LEGAL PAGES */
.legal-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #ffffff;
  margin-bottom: 12px;
}

.legal-hero p {
  color: #cccccc;
}

.legal-content {
  background-color: #ffffff;
  padding: 40px 20px;
}

.legal-content h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
  text-align: left;
  border-bottom: 2px solid #000000;
  padding-bottom: 12px;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  text-align: left;
}

.legal-content p,
.legal-content ul li {
  color: #2a2a2a;
  margin-bottom: 16px;
  text-align: left;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

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

.legal-content table th {
  background-color: #f8f8f8;
  font-weight: 700;
  color: #000000;
}

.cookie-settings {
  background-color: #f8f8f8;
  padding: 32px;
  margin-top: 40px;
  border: 2px solid #000000;
}

.cookie-settings h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* FOOTER */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-about,
.footer-contact,
.footer-links,
.footer-legal {
  flex: 1 1 100%;
}

.footer-about img {
  max-width: 180px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-about p,
.footer-contact p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

footer h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  color: #cccccc;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #999999;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid #333333;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #000000;
  padding: 24px 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-banner p {
  color: #2a2a2a;
  font-size: 14px;
  text-align: center;
  margin: 0;
}

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

.cookie-banner button {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept-all {
  background-color: #000000;
  color: #ffffff;
}

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

.cookie-reject-all,
.cookie-settings-btn {
  background-color: #ffffff;
  color: #000000;
}

.cookie-reject-all:hover,
.cookie-settings-btn:hover {
  background-color: #f8f8f8;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  border: 2px solid #000000;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #333333;
}

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background-color: #f8f8f8;
  border-left: 4px solid #000000;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  text-align: left;
}

.cookie-category p {
  color: #4a4a4a;
  font-size: 14px;
  margin-bottom: 12px;
  text-align: left;
}

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

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

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

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-save-preferences {
  background-color: #000000;
  color: #ffffff;
  padding: 12px 24px;
  border: 2px solid #000000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-save-preferences:hover {
  background-color: #333333;
}

/* RESPONSIVE DESIGN - TABLET */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }
  
  h2 {
    font-size: 36px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero p,
  .hero .subheadline {
    font-size: 20px;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
  
  .benefit {
    flex: 1 1 45%;
  }
  
  .service-card,
  .service-detail {
    flex: 1 1 45%;
  }
  
  .step {
    flex: 1 1 45%;
  }
  
  .expertise-area {
    flex: 1 1 45%;
  }
  
  .category,
  article {
    flex: 1 1 45%;
  }
  
  .type {
    flex: 1 1 45%;
  }
  
  .team-member {
    flex: 1 1 45%;
  }
  
  .option {
    flex: 1 1 45%;
  }
  
  .steps .step,
  .steps-grid .step {
    flex: 1 1 45%;
  }
  
  .footer-about,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 45%;
  }
  
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-banner p {
    text-align: left;
    flex: 1;
  }
}

/* RESPONSIVE DESIGN - DESKTOP */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  
  header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  header nav {
    display: flex;
    align-items: center;
  }
  
  .header-cta {
    display: flex;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .benefit {
    flex: 1 1 22%;
  }
  
  .service-card {
    flex: 1 1 30%;
  }
  
  .step {
    flex: 1 1 22%;
  }
  
  .expertise-area {
    flex: 1 1 22%;
  }
  
  .category,
  article {
    flex: 1 1 30%;
  }
  
  .type {
    flex: 1 1 30%;
  }
  
  .team-member {
    flex: 1 1 30%;
  }
  
  .option {
    flex: 1 1 30%;
  }
  
  .steps .step,
  .steps-grid .step {
    flex: 1 1 22%;
  }
  
  .footer-about,
  .footer-contact,
  .footer-links,
  .footer-legal {
    flex: 1 1 22%;
  }
}

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

.hero,
.section {
  animation: fadeIn 0.8s ease;
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header nav,
  .header-cta {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}