/* ============================================
   GOLDEN PULSE - MINIMALIST CSS STYLES
   Design Style: Minimalist
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY - MINIMALIST STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 200;
}

h2 {
  font-size: 32px;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  font-weight: 400;
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
  line-height: 1.8;
}

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============================================
   HEADER - MINIMALIST DESIGN
   ============================================ */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

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

.logo img {
  height: 40px;
  width: auto;
}

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

.main-nav a {
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #8B7324;
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1001;
  background: #1A1A1A;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #1A1A1A;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 400;
  color: #1A1A1A;
  padding: 12px 0;
  border-bottom: 1px solid #F5F5F5;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #8B7324;
}

/* ============================================
   BUTTONS - MINIMALIST STYLE
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #1A1A1A;
  background-color: transparent;
  color: #1A1A1A;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:hover {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.btn-primary {
  background-color: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.btn-primary:hover {
  background-color: #8B7324;
  border-color: #8B7324;
}

.btn-secondary {
  background-color: transparent;
  color: #1A1A1A;
  border: 1px solid #1A1A1A;
}

.btn-secondary:hover {
  background-color: #F5EBD8;
}

/* ============================================
   HERO SECTION - MINIMALIST DESIGN
   ============================================ */
.hero {
  padding: 120px 20px 80px;
  background-color: #F5EBD8;
  margin-bottom: 80px;
}

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

.hero h1 {
  font-size: 56px;
  font-weight: 200;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.subheadline {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.badge {
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  padding: 12px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
}

/* ============================================
   HERO INTERNAL PAGES
   ============================================ */
.hero-internal {
  padding: 80px 20px 60px;
  background-color: #F5EBD8;
  text-align: center;
  margin-bottom: 60px;
}

.hero-internal h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 18px;
  color: #4A4A4A;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: #8B7324;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 400;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #4A4A4A;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview {
  padding: 80px 20px;
  background-color: #F5F5F5;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 48px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card {
  flex: 1 1 320px;
  max-width: 360px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #8B7324;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  color: #4A4A4A;
  flex-grow: 1;
}

.price {
  font-size: 28px;
  font-weight: 300;
  color: #1A1A1A;
  margin: 16px 0;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  padding: 40px 32px;
  background-color: #F5F5F5;
  border-left: 3px solid #8B7324;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.author strong {
  font-size: 15px;
  color: #1A1A1A;
  font-weight: 600;
}

.author span {
  font-size: 14px;
  color: #4A4A4A;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
  padding: 80px 20px;
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 56px;
  font-weight: 200;
  color: #8B7324;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #E8E8E8;
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-banner,
.cta-section {
  padding: 80px 20px;
  background-color: #F5EBD8;
  text-align: center;
}

.cta-banner h2,
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   COURSES PAGE
   ============================================ */
.courses {
  padding: 60px 20px;
}

.course-card {
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 40px 32px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.course-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.course-meta span {
  font-size: 13px;
  padding: 6px 12px;
  background-color: #F5F5F5;
  color: #1A1A1A;
  border: 1px solid #E8E8E8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.level {
  background-color: #F5EBD8 !important;
  border-color: #8B7324 !important;
}

.course-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.course-card ul li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 24px;
  position: relative;
}

.course-card ul li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8B7324;
}

/* ============================================
   PRICING PAGE
   ============================================ */
.pricing {
  padding: 60px 20px;
}

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

.pricing-card {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: #8B7324;
}

.pricing-card.best-value {
  border: 2px solid #8B7324;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8B7324;
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.price-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
}

.price-display .price {
  font-size: 36px;
  font-weight: 300;
  color: #1A1A1A;
  margin: 0;
}

.price-display .period {
  font-size: 14px;
  color: #4A4A4A;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.features li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 24px;
  position: relative;
}

.features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7324;
  font-weight: 600;
}

/* ============================================
   DISCOUNTS SECTION
   ============================================ */
.discounts {
  padding: 60px 20px;
  background-color: #F5F5F5;
}

.discounts h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.discount-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  text-align: center;
}

.discount-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #8B7324;
}

.discount-card p {
  font-size: 14px;
  color: #4A4A4A;
}

/* ============================================
   PAYMENT INFO
   ============================================ */
.payment-info {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.payment-info h2 {
  margin-bottom: 24px;
}

.payment-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.payment-info li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 24px;
  position: relative;
}

.payment-info li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B7324;
  font-weight: 600;
}

/* ============================================
   ABOUT PAGE SECTIONS
   ============================================ */
.story,
.methodology,
.cultural-integration {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.story h2,
.methodology h2,
.cultural-integration h2 {
  margin-bottom: 24px;
}

.story p,
.methodology p,
.cultural-integration p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A4A4A;
  max-width: 800px;
  margin-bottom: 16px;
}

.methodology ul,
.cultural-integration ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.methodology li,
.cultural-integration li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 24px;
  position: relative;
}

.methodology li:before,
.cultural-integration li:before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8B7324;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values {
  padding: 60px 20px;
  background-color: #F5F5F5;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.value-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  text-align: center;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 400;
}

.value-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   STATS DETAILED
   ============================================ */
.stats-detailed {
  padding: 80px 20px;
  background-color: #FFFFFF;
}

.stats-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 40px 24px;
  background-color: #F5F5F5;
  border-left: 3px solid #8B7324;
  text-align: center;
}

.stat-card .stat-number {
  font-size: 48px;
  font-weight: 200;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4A4A4A;
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 13px;
  color: #4A4A4A;
  line-height: 1.6;
}

/* ============================================
   TECHNIQUES & TOOLS
   ============================================ */
.techniques,
.technology {
  padding: 60px 20px;
  background-color: #F5F5F5;
}

.techniques h2,
.technology h2 {
  text-align: center;
  margin-bottom: 48px;
}

.technique-grid,
.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.technique-card,
.tool-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
}

.technique-card h3,
.tool-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 400;
}

.technique-card p,
.tool-card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-featured {
  padding: 60px 20px;
  background-color: #F5EBD8;
}

.featured-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 40px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
}

.featured-post h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post p {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #4A4A4A;
}

.post-meta span {
  padding: 4px 12px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
}

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.post-card {
  flex: 1 1 320px;
  max-width: 360px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: #8B7324;
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
}

.post-card p {
  font-size: 15px;
  color: #4A4A4A;
  flex-grow: 1;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
  padding: 80px 20px;
  background-color: #F5EBD8;
  text-align: center;
}

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

.newsletter p {
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1 1 280px;
  padding: 14px 20px;
  border: 1px solid #E8E8E8;
  font-size: 14px;
  background-color: #FFFFFF;
  color: #1A1A1A;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #8B7324;
}

.privacy-notice {
  font-size: 12px;
  color: #4A4A4A;
  margin-top: 12px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.contact-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px 24px;
  background-color: #F5F5F5;
  border-left: 3px solid #8B7324;
  text-align: center;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 400;
}

.contact-card p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
  padding: 60px 20px;
  background-color: #F5F5F5;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 40px;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-field label {
  font-size: 14px;
  font-weight: 400;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid #E8E8E8;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  background-color: #FFFFFF;
  color: #1A1A1A;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #8B7324;
}

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

.form-field label input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.map-section p {
  text-align: center;
  font-size: 16px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder p {
  font-size: 14px;
  color: #4A4A4A;
}

/* ============================================
   FREE LESSON SECTION
   ============================================ */
.free-lesson {
  padding: 80px 20px;
  background-color: #F5EBD8;
  text-align: center;
}

.free-lesson h2 {
  margin-bottom: 16px;
}

.free-lesson p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.free-lesson ul {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.free-lesson li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 24px;
  position: relative;
}

.free-lesson li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7324;
  font-weight: 600;
}

/* ============================================
   LEGAL CONTENT PAGES
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.content-section {
  margin-bottom: 40px;
  max-width: 900px;
}

.content-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 400;
}

.content-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.content-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.content-section li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 24px;
  position: relative;
  line-height: 1.8;
}

.content-section li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8B7324;
  font-weight: 600;
}

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

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

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

.thank-you h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.thank-you p {
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 32px;
}

.next-steps {
  margin-top: 48px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 1px solid #E8E8E8;
  text-align: left;
}

.next-steps h2 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-steps li {
  font-size: 15px;
  color: #4A4A4A;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
}

.next-steps li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #8B7324;
  font-weight: 600;
}

/* ============================================
   SUGGESTIONS SECTION
   ============================================ */
.suggestions {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.suggestions h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px 24px;
  background-color: #F5F5F5;
  border: 1px solid #E8E8E8;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.suggestion-card p {
  font-size: 15px;
  color: #4A4A4A;
  flex-grow: 1;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #1A1A1A;
  color: #E8E8E8;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 240px;
  max-width: 320px;
}

.footer-section h3,
.footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 16px;
}

.footer-section p {
  font-size: 14px;
  color: #B8B8B8;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  font-size: 14px;
  color: #B8B8B8;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #8B7324;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #333333;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #B8B8B8;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid #333333;
}

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

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

.cookie-consent p {
  flex: 1 1 400px;
  font-size: 14px;
  color: #E8E8E8;
  margin: 0;
}

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

.cookie-consent-buttons button {
  padding: 10px 20px;
  font-size: 13px;
  border: 1px solid #FFFFFF;
  background-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.cookie-consent-buttons button:hover {
  background-color: #FFFFFF;
  color: #1A1A1A;
}

.cookie-consent-buttons .btn-accept {
  background-color: #8B7324;
  border-color: #8B7324;
}

.cookie-consent-buttons .btn-accept:hover {
  background-color: #6B5618;
  border-color: #6B5618;
  color: #FFFFFF;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #1A1A1A;
  cursor: pointer;
  width: 32px;
  height: 32px;
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E8E8E8;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background-color: #E8E8E8;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #8B7324;
}

.cookie-toggle input[type="checkbox"]:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  top: 2px;
  left: 2px;
  transition: left 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked:before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-internal h1 {
    font-size: 36px;
  }
  
  /* Adjust padding for sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 80px 20px 60px;
  }
  
  .hero-internal {
    padding: 60px 20px 40px;
  }
  
  /* Stack buttons vertically */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Full width cards */
  .feature-grid,
  .service-cards,
  .pricing-grid,
  .value-grid,
  .technique-grid,
  .tool-grid,
  .discount-grid,
  .contact-grid,
  .post-grid,
  .suggestion-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .pricing-card,
  .value-card,
  .technique-card,
  .tool-card,
  .discount-card,
  .contact-card,
  .post-card,
  .suggestion-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Stats grid adjustments */
  .stats-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .stat {
    max-width: 100%;
  }
  
  /* Testimonials */
  .testimonial-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    max-width: 100%;
  }
  
  /* Course cards */
  .course-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-container {
    width: 100%;
  }
  
  /* Map */
  .map-placeholder {
    height: 300px;
  }
}

/* Tablet devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  /* Adjust card widths for tablet */
  .feature-card,
  .service-card,
  .pricing-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* Desktop devices (1025px and above) */
@media (min-width: 1025px) {
  /* Ensure proper spacing */
  section {
    margin-bottom: 80px;
  }
  
  /* Hover effects for desktop */
  .btn {
    transition: all 0.3s ease, transform 0.2s ease;
  }
  
  .btn:hover {
    transform: translateY(-2px);
  }
  
  .service-card:hover,
  .pricing-card:hover,
  .post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  }
}

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

.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; }

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */
*:focus {
  outline: 2px solid #8B7324;
  outline-offset: 2px;
}

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

/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    color: #000000;
    background-color: #FFFFFF;
  }
  
  a {
    text-decoration: underline;
  }
}