/* =================================================================
   STERNENWEGE - MINIMALIST ASTROLOGICAL DESIGN
   CSS Reset, Variables, and Base Styles
   ================================================================= */

/* CSS Reset */
* {
  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.6;
  color: #2d2d2d;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* CSS Variables */
:root {
  --primary-color: #2C1654;
  --secondary-color: #8B6BA8;
  --accent-color: #D4AF37;
  --text-dark: #2d2d2d;
  --text-light: #5a5a5a;
  --background-light: #fafafa;
  --border-color: #e8e8e8;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s ease;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --border-radius: 8px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 48px;
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: 32px;
  margin-bottom: var(--spacing-lg);
}

h3 {
  font-size: 24px;
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 18px;
  margin-bottom: var(--spacing-sm);
}

p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

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

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

ul, ol {
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
}

li {
  margin-bottom: var(--spacing-xs);
  color: var(--text-light);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* =================================================================
   HEADER & NAVIGATION
   ================================================================= */

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.logo {
  height: 48px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  margin: 0 var(--spacing-xs);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--accent-color);
  background-color: var(--background-light);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  z-index: 1000;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

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

.mobile-menu-close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  width: 40px;
  height: 40px;
  background-color: var(--background-light);
  color: var(--text-dark);
  border: none;
  border-radius: var(--border-radius);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-xl);
}

.mobile-nav a {
  display: block;
  padding: var(--spacing-sm);
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background-color: var(--background-light);
  color: var(--accent-color);
  padding-left: var(--spacing-md);
}

/* =================================================================
   BUTTONS
   ================================================================= */

.btn-primary,
.btn-secondary,
.btn-small {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  background-color: var(--background-light);
  color: var(--primary-color);
}

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

.calculator-btn {
  width: 100%;
  margin-top: var(--spacing-md);
}

/* =================================================================
   HERO SECTION
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #2C1654 0%, #8B6BA8 100%);
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

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

.hero h1 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.trust-indicator {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--spacing-md);
}

/* Page Hero */
.page-hero {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  margin-bottom: var(--spacing-sm);
}

.page-hero p {
  font-size: 18px;
  color: var(--text-light);
}

.update-date {
  font-size: 14px;
  color: var(--text-light);
  margin-top: var(--spacing-sm);
}

/* =================================================================
   SECTIONS & CARDS
   ================================================================= */

section {
  margin-bottom: var(--spacing-xxl);
  padding: var(--spacing-lg) 0;
}

/* Services Overview */
.services-overview {
  padding: var(--spacing-xxl) 0;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.services-grid,
.benefits-grid,
.testimonial-grid,
.format-grid,
.methods-grid,
.relationship-grid,
.activities-grid,
.phases-grid,
.resources-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.service-card,
.benefit-card,
.format-card,
.method-card,
.relationship-card,
.activity-card,
.phase-info,
.resource-card,
.step-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  margin-bottom: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.service-card:hover,
.benefit-card:hover,
.format-card:hover,
.method-card:hover,
.relationship-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card img,
.benefit-card img,
.format-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: var(--spacing-sm);
}

.service-card h3,
.benefit-card h3,
.format-card h3,
.method-card h3,
.relationship-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.service-card p,
.benefit-card p,
.format-card p,
.method-card p,
.relationship-card p {
  flex-grow: 1;
  margin-bottom: var(--spacing-sm);
}

.price,
.price-info {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin: var(--spacing-sm) 0;
}

/* Benefits Section */
.benefits {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.benefits h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-xxl) 0;
  background-color: var(--white);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 550px;
  background-color: var(--background-light);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-md);
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.8;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 14px;
  margin-top: var(--spacing-sm);
}

/* Location Section */
.location {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.location h2 {
  margin-bottom: var(--spacing-md);
}

.contact-info {
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
  text-align: left;
}

.contact-info p {
  margin-bottom: var(--spacing-sm);
  font-size: 16px;
}

/* CTA Banner */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C1654 0%, #8B6BA8 100%);
  color: var(--white);
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
}

/* =================================================================
   DETAILED SERVICE PAGES
   ================================================================= */

.services-detailed {
  padding: var(--spacing-xxl) 0;
}

.service-detail {
  background-color: var(--white);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.service-detail h2 {
  margin-bottom: var(--spacing-md);
}

.service-detail p {
  margin-bottom: var(--spacing-sm);
}

/* Consultation Formats */
.consultation-formats {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.consultation-formats h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

/* FAQ Section */
.faq,
.faq-contact {
  padding: var(--spacing-xxl) 0;
}

.faq h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.faq-item {
  background-color: var(--white);
  padding: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.faq-item p {
  color: var(--text-light);
}

/* =================================================================
   CALCULATOR & FORMS
   ================================================================= */

.calculator-tool,
.compatibility-calculator {
  padding: var(--spacing-xxl) 0;
}

.calculator-tool h2,
.compatibility-calculator h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.calculator-tool > .container > p,
.compatibility-calculator > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.calculator-interface,
.compatibility-interface {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.input-group,
.checkbox-group {
  margin-bottom: var(--spacing-md);
}

.input-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

.calculator-input,
.compatibility-input,
input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 12px var(--spacing-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
  background-color: var(--white);
}

.calculator-input:focus,
.compatibility-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 22, 84, 0.1);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 14px;
}

.note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: var(--spacing-md);
  text-align: center;
  font-style: italic;
}

/* Chart Explanation */
.chart-explanation {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.chart-explanation h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.explanation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.explanation-card {
  flex: 1 1 250px;
  max-width: 280px;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.explanation-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* Upgrade Options */
.upgrade-options {
  padding: var(--spacing-xxl) 0;
}

.upgrade-options h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.upgrade-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: center;
}

.upgrade-card {
  flex: 1 1 300px;
  max-width: 400px;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.upgrade-card h3 {
  margin-bottom: var(--spacing-sm);
}

.upgrade-card p {
  margin-bottom: var(--spacing-sm);
}

/* =================================================================
   COMPATIBILITY PAGE
   ================================================================= */

.relationship-types {
  padding: var(--spacing-xxl) 0;
}

.relationship-types h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.synastry-service {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.synastry-service h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.synastry-service > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.service-highlights {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.service-highlights ul {
  text-align: left;
  margin-bottom: var(--spacing-md);
}

.service-highlights li {
  margin-bottom: var(--spacing-xs);
}

/* =================================================================
   BUSINESS ASTROLOGIE PAGE
   ================================================================= */

.business-services {
  padding: var(--spacing-xxl) 0;
}

.business-services h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.business-benefits {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.business-benefits h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.career-analysis {
  padding: var(--spacing-xxl) 0;
  text-align: center;
}

.career-analysis h2 {
  margin-bottom: var(--spacing-md);
}

.career-analysis p {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

/* =================================================================
   MONDKALENDER PAGE
   ================================================================= */

.moon-current {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.moon-current h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.moon-display {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-lg);
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.moon-visual {
  flex: 0 0 120px;
}

.moon-visual img {
  width: 120px;
  height: 120px;
}

.moon-info {
  flex: 1 1 300px;
}

.moon-info p {
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.recommendation {
  margin-top: var(--spacing-sm);
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--primary-color);
}

.moon-activities {
  padding: var(--spacing-xxl) 0;
}

.moon-activities h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.zodiac-transit {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.zodiac-transit h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.zodiac-transit > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.transit-info {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.transit-info p {
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.lunar-service {
  padding: var(--spacing-xxl) 0;
}

.lunar-service h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.lunar-service > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
}

.service-features {
  max-width: 600px;
  margin: 0 auto var(--spacing-md);
  list-style-position: inside;
}

.service-features li {
  margin-bottom: var(--spacing-xs);
}

.moon-phases-education {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.moon-phases-education h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.moon-phases-education > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */

.contact-section {
  padding: var(--spacing-xxl) 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  align-items: flex-start;
}

.contact-form-section,
.contact-info-section {
  flex: 1 1 400px;
}

.form-container {
  background-color: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.info-block {
  background-color: var(--white);
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.info-block h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-size: 18px;
}

.info-block p {
  margin-bottom: 0;
}

.contact-methods {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.location-map {
  padding: var(--spacing-xxl) 0;
}

.location-map h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.location-map > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.map-placeholder {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--background-light);
  padding: var(--spacing-xxl);
  border-radius: var(--border-radius);
  text-align: center;
  border: 2px dashed var(--border-color);
}

.map-placeholder p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}

/* =================================================================
   LEGAL PAGES
   ================================================================= */

.legal-content {
  padding: var(--spacing-xxl) 0;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.content-wrapper h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
}

.content-wrapper h3 {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.content-wrapper p {
  margin-bottom: var(--spacing-sm);
}

.content-wrapper a {
  color: var(--primary-color);
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: var(--accent-color);
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */

.thank-you-hero {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-lg);
  box-shadow: var(--shadow-md);
}

.thank-you-content h1 {
  margin-bottom: var(--spacing-sm);
}

.subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.next-steps {
  padding: var(--spacing-xxl) 0;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.additional-resources {
  background-color: var(--background-light);
  padding: var(--spacing-xxl) 0;
}

.additional-resources h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.additional-resources > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.contact-confirmation {
  padding: var(--spacing-xxl) 0;
}

.contact-confirmation h2 {
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.contact-confirmation > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.contact-confirmation .contact-info {
  max-width: 600px;
  margin: var(--spacing-lg) auto 0;
  text-align: center;
}

/* =================================================================
   FOOTER
   ================================================================= */

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: var(--spacing-xxl) 0 var(--spacing-md);
  margin-top: var(--spacing-xxl);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 220px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: var(--spacing-sm);
  font-family: 'Lato', sans-serif;
}

.footer-links a,
.footer-contact p {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: var(--spacing-xs);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: var(--spacing-xs);
}

.footer-contact p {
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-md);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-md);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dark);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--primary-color);
  color: var(--white);
}

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

.cookie-reject {
  background-color: var(--background-light);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background-color: var(--border-color);
}

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

.cookie-settings:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

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

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

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

.cookie-modal h2 {
  margin-bottom: var(--spacing-md);
}

.cookie-category {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  background-color: var(--background-light);
  border-radius: var(--border-radius);
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: var(--spacing-xs);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle.active {
  background-color: var(--primary-color);
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

/* =================================================================
   RESPONSIVE DESIGN - TABLET
   ================================================================= */

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .services-grid,
  .benefits-grid {
    justify-content: space-between;
  }

  .service-card,
  .benefit-card {
    flex: 1 1 calc(50% - var(--spacing-md));
    max-width: calc(50% - var(--spacing-md));
  }

  .testimonial-grid {
    justify-content: space-between;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - var(--spacing-md));
    max-width: calc(50% - var(--spacing-md));
  }

  .contact-grid {
    gap: var(--spacing-xxl);
  }

  .moon-display {
    flex-wrap: nowrap;
  }

  .cookie-content {
    flex-wrap: nowrap;
  }
}

/* =================================================================
   RESPONSIVE DESIGN - DESKTOP
   ================================================================= */

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .service-card,
  .benefit-card {
    flex: 1 1 calc(33.333% - var(--spacing-md));
    max-width: calc(33.333% - var(--spacing-md));
  }

  .explanation-card,
  .format-card,
  .method-card {
    flex: 1 1 calc(25% - var(--spacing-md));
    max-width: calc(25% - var(--spacing-md));
  }

  .relationship-card,
  .activity-card {
    flex: 1 1 calc(25% - var(--spacing-md));
    max-width: calc(25% - var(--spacing-md));
  }

  .step-card {
    flex: 1 1 calc(33.333% - var(--spacing-md));
    max-width: calc(33.333% - var(--spacing-md));
  }
}

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */

@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 slideInBottom {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 20pt;
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.hidden {
  display: none;
}

.visible {
  display: block;
}