/* ====================================
   PIONEER CRAFT - ELEGANT CLASSIC DESIGN
   Modern meets Traditional Craftsmanship
   ==================================== */

/* ====================================
   CSS RESET & BASE STYLES
   ==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2C3E50;
  background-color: #F8F6F3;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ====================================
   TYPOGRAPHY - ELEGANT CLASSIC
   ==================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1a252f;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A5568;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* ====================================
   CONTAINER & LAYOUT
   ==================================== */

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

/* ====================================
   HEADER - ELEGANT & REFINED
   ==================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2DDD5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #4A5568;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
}

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

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

.main-nav a:hover {
  color: #2C5F8D;
}

.header-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ====================================
   BUTTONS - CLASSIC REFINED STYLE
   ==================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1e4363;
  border-color: #1e4363;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.2);
}

.btn-link {
  background: none;
  border: none;
  color: #2C5F8D;
  padding: 8px 0;
  font-weight: 600;
  position: relative;
}

.btn-link::after {
  content: '→';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover::after {
  margin-left: 12px;
}

/* ====================================
   MOBILE MENU - ELEGANT SLIDE
   ==================================== */

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid #2C5F8D;
  color: #2C5F8D;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #2C5F8D;
  color: #FFFFFF;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 32px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #4A5568;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2C5F8D;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 60px;
}

.mobile-nav a {
  padding: 16px 0;
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: #2C3E50;
  border-bottom: 1px solid #E2DDD5;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2C5F8D;
  padding-left: 12px;
}

/* ====================================
   HERO SECTION - ELEGANT PRESENCE
   ==================================== */

.hero {
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E4DC 100%);
  padding: 100px 0;
  margin-bottom: 60px;
  border-bottom: 3px solid #E2DDD5;
}

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

.hero h1 {
  font-size: 56px;
  color: #1a252f;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #D1C7B7;
}

.trust-indicators span {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #6B7280;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ====================================
   PAGE HERO - REFINED HEADERS
   ==================================== */

.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4363 100%);
  padding: 80px 0;
  margin-bottom: 60px;
  color: #FFFFFF;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

/* ====================================
   SECTIONS - ELEGANT SPACING
   ==================================== */

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

.values,
.services,
.process,
.testimonials,
.courses-detailed,
.story,
.mission-values,
.team,
.facilities,
.achievements,
.intro,
.team-profiles,
.expertise-areas,
.teaching-philosophy,
.impact-stats,
.featured-stories,
.story-grid,
.alumni-network,
.featured-article,
.blog-articles,
.resources,
.expert-tips,
.newsletter,
.contact-options,
.contact-form-section,
.location,
.office-hours,
.faq-quick,
.legal-content,
.error-help,
.popular-pages,
.quick-courses,
.thank-you-hero,
.next-steps,
.while-you-wait,
.contact-alternatives,
.social-proof,
.navigation-links,
.financing,
.faq {
  padding: 60px 0;
  margin-bottom: 40px;
}

.section h2,
.values h2,
.services h2,
.process h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #6B7280;
  max-width: 700px;
  margin: -32px auto 48px;
}

/* ====================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ==================================== */

.value-grid,
.service-grid,
.card-container,
.content-grid,
.financing-options,
.facilities-grid,
.profile-grid,
.expertise-grid,
.testimonial-grid,
.stats-grid,
.story-grid,
.articles-grid,
.resources-grid,
.tips-grid,
.options-grid,
.contact-info-grid,
.steps-grid,
.suggestions-grid,
.links-grid,
.reasons-grid,
.pages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.value-card,
.service-card,
.card,
.financing-card,
.facility-card,
.profile-card,
.expertise-card,
.stat-card,
.story-card,
.article-card,
.resource-card,
.tip-card,
.option-card,
.contact-info-card,
.step-card,
.suggestion-card,
.nav-card,
.reason-card {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E2DDD5;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.value-card:hover,
.service-card:hover,
.card:hover,
.financing-card:hover,
.facility-card:hover,
.profile-card:hover,
.expertise-card:hover,
.story-card:hover,
.article-card:hover,
.resource-card:hover,
.tip-card:hover,
.suggestion-card:hover,
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(44, 95, 141, 0.12);
  border-color: #2C5F8D;
}

.service-card h3,
.value-card h3,
.card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.value-card p {
  color: #4A5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D67229;
  margin: 20px 0;
  font-family: 'Georgia', serif;
}

/* ====================================
   PROCESS STEPS - ELEGANT FLOW
   ==================================== */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.step {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Georgia', serif;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a252f;
}

.step p {
  color: #6B7280;
  font-size: 15px;
}

/* ====================================
   TESTIMONIALS - REFINED CARDS
   ==================================== */

.testimonials {
  background-color: #F8F6F3;
  padding: 80px 0;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}

.testimonial-card {
  flex: 1 1 450px;
  background-color: #FFFFFF;
  padding: 40px;
  border-left: 4px solid #D67229;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 17px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 14px;
  color: #6B7280;
  font-weight: 600;
  font-style: normal;
  margin-top: 16px;
}

.success-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 48px 0;
  padding: 40px 0;
  border-top: 1px solid #E2DDD5;
  border-bottom: 1px solid #E2DDD5;
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F8D;
  font-family: 'Georgia', serif;
}

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

/* ====================================
   CTA SECTIONS - ELEGANT CALLS TO ACTION
   ==================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1e4363 100%);
  color: #FFFFFF;
  padding: 80px 40px;
  text-align: center;
  margin: 60px 0;
  border-radius: 4px;
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 38px;
}

.cta-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-center {
  text-align: center;
  margin-top: 48px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
}

/* ====================================
   LOCATION & CONTACT
   ==================================== */

.location {
  background-color: #F8F6F3;
  padding: 60px 0;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 32px;
}

.location-info {
  flex: 1 1 400px;
}

.location-info p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

/* ====================================
   TIMELINE - ELEGANT HISTORY
   ==================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  padding-left: 40px;
  border-left: 3px solid #2C5F8D;
}

.timeline-item {
  position: relative;
  padding-left: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -43px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #D67229;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 3px #2C5F8D;
}

.year {
  font-size: 24px;
  font-weight: 700;
  color: #2C5F8D;
  display: block;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.timeline-item p {
  color: #4A5568;
}

/* ====================================
   LISTS - REFINED PRESENTATION
   ==================================== */

.course-highlights,
.achievements-list,
.philosophy-list,
.rights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.course-highlights li,
.achievements-list li,
.philosophy-list li,
.rights-list li {
  padding-left: 32px;
  position: relative;
  color: #4A5568;
  line-height: 1.7;
}

.course-highlights li::before,
.achievements-list li::before,
.philosophy-list li::before,
.rights-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D67229;
  font-weight: 700;
  font-size: 18px;
}

/* ====================================
   FAQ - ELEGANT ACCORDION STYLE
   ==================================== */

.faq-list,
.faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E2DDD5;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #2C5F8D;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.08);
}

.faq-item h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4A5568;
  line-height: 1.7;
}

/* ====================================
   BLOG & ARTICLES
   ==================================== */

.article-featured {
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 4px;
  border-left: 4px solid #D67229;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 60px;
}

.category {
  display: inline-block;
  background-color: #F8F6F3;
  color: #2C5F8D;
  padding: 6px 16px;
  border-radius: 2px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #6B7280;
  margin-top: 16px;
}

.author {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
  margin-top: 16px;
}

/* ====================================
   NEWSLETTER - ELEGANT SIGNUP
   ==================================== */

.newsletter {
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E4DC 100%);
  padding: 80px 40px;
  text-align: center;
  border-radius: 4px;
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.newsletter-benefits span {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 14px;
  color: #2C5F8D;
  font-weight: 600;
  border: 1px solid #E2DDD5;
}

.subscriber-count {
  font-size: 14px;
  color: #6B7280;
  margin: 24px 0;
}

/* ====================================
   CONTACT FORM SECTION
   ==================================== */

.form-note {
  background-color: #FEF3E7;
  border-left: 4px solid #D67229;
  padding: 20px;
  margin-bottom: 32px;
  border-radius: 2px;
}

.form-placeholder {
  background-color: #FFFFFF;
  border: 2px dashed #E2DDD5;
  padding: 60px 40px;
  text-align: center;
  border-radius: 4px;
  margin-top: 32px;
}

.form-placeholder p {
  color: #6B7280;
  margin-bottom: 24px;
}

/* ====================================
   HOURS TABLE - REFINED SCHEDULE
   ==================================== */

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background-color: #FFFFFF;
  border-radius: 2px;
  border: 1px solid #E2DDD5;
}

.day {
  font-weight: 600;
  color: #2C3E50;
}

.time {
  color: #6B7280;
}

/* ====================================
   ERROR PAGE - ELEGANT 404
   ==================================== */

.error-hero {
  padding: 100px 0;
  text-align: center;
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E2DDD5;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
}

.error-subtitle {
  font-size: 18px;
  color: #6B7280;
  margin-top: 16px;
}

.page-link {
  display: block;
  padding: 20px;
  background-color: #FFFFFF;
  border: 1px solid #E2DDD5;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  color: #2C5F8D;
  font-weight: 600;
}

.page-link:hover {
  border-color: #2C5F8D;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.1);
  transform: translateX(8px);
}

.course-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.course-links a {
  padding: 16px 24px;
  background-color: #FFFFFF;
  border: 1px solid #E2DDD5;
  border-radius: 4px;
  color: #2C5F8D;
  font-weight: 600;
  transition: all 0.3s ease;
}

.course-links a:hover {
  border-color: #2C5F8D;
  background-color: #F8F6F3;
  padding-left: 32px;
}

/* ====================================
   THANK YOU PAGE - ELEGANT SUCCESS
   ==================================== */

.thank-you-hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #F8F6F3 0%, #E8E4DC 100%);
}

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

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

.thank-you-content .subtitle {
  font-size: 18px;
  color: #4A5568;
  margin: 16px 0;
}

.confirmation {
  font-size: 14px;
  color: #6B7280;
  margin-top: 24px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 48px 0;
}

/* ====================================
   LEGAL PAGES - REFINED DOCUMENTATION
   ==================================== */

.legal-hero {
  background-color: #2C5F8D;
  color: #FFFFFF;
  padding: 80px 0;
  margin-bottom: 60px;
}

.legal-hero h1 {
  color: #FFFFFF;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 20px;
  font-size: 32px;
  color: #2C5F8D;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
  color: #2C3E50;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li {
  list-style: disc;
  color: #4A5568;
  margin-bottom: 12px;
}

.legal-links-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #E2DDD5;
}

.legal-links-section h3 {
  color: #2C5F8D;
  margin-bottom: 20px;
}

.legal-links-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.legal-links-section li {
  list-style: none;
}

.legal-links-section a {
  color: #2C5F8D;
  font-weight: 600;
  transition: color 0.3s ease;
}

.legal-links-section a:hover {
  color: #1e4363;
  text-decoration: underline;
}

/* ====================================
   FOOTER - ELEGANT & REFINED
   ==================================== */

footer {
  background-color: #1a252f;
  color: #FFFFFF;
  padding: 60px 0 24px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.footer-column p,
.footer-column ul li {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 14px;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #FFFFFF;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ====================================
   COOKIE CONSENT BANNER - ELEGANT
   ==================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #E2DDD5;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-buttons button {
  padding: 12px 24px;
  border: 2px solid #2C5F8D;
  border-radius: 2px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #2C5F8D;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #1e4363;
}

.cookie-reject,
.cookie-settings {
  background-color: transparent;
  color: #2C5F8D;
}

.cookie-reject:hover,
.cookie-settings:hover {
  background-color: #F8F6F3;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 37, 47, 0.8);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #2C5F8D;
  margin-bottom: 24px;
}

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

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

.cookie-category h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

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

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

.cookie-save {
  background-color: #2C5F8D;
  color: #FFFFFF;
  border: none;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background-color: #1e4363;
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 38px; }
  .error-code { font-size: 80px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Adjust header */
  .header-content {
    justify-content: space-between;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Page hero */
  .page-hero {
    padding: 60px 0;
  }
  
  /* Sections */
  .section,
  .values,
  .services,
  .process,
  .testimonials {
    padding: 40px 0;
  }
  
  /* Cards and grids */
  .value-grid,
  .service-grid,
  .financing-options,
  .facilities-grid,
  .profile-grid,
  .expertise-grid,
  .stats-grid,
  .story-grid,
  .articles-grid,
  .resources-grid,
  .tips-grid,
  .options-grid,
  .contact-info-grid,
  .steps-grid,
  .suggestions-grid,
  .links-grid,
  .reasons-grid,
  .pages-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .financing-card,
  .facility-card,
  .profile-card,
  .expertise-card,
  .stat-card,
  .story-card,
  .article-card,
  .resource-card,
  .tip-card {
    flex: 1 1 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  /* Testimonials */
  .testimonial-grid {
    flex-direction: column;
  }
  
  .success-stats {
    flex-direction: column;
    gap: 32px;
  }
  
  /* CTA sections */
  .cta-banner,
  .cta-section {
    padding: 60px 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
  
  /* Location */
  .location-content {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Forms */
  .form-placeholder {
    padding: 40px 20px;
  }
  
  /* Hours table */
  .hours-row {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Stats row */
  .stats-row {
    flex-direction: column;
    gap: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .value-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 { font-size: 42px; }
  .hero h1 { font-size: 48px; }
}

/* ====================================
   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; }

.supporting-text {
  text-align: center;
  color: #6B7280;
  font-size: 15px;
  margin-top: 32px;
}

.mission-statement {
  text-align: center;
  font-size: 20px;
  color: #2C3E50;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.title {
  font-size: 15px;
  color: #D67229;
  font-weight: 600;
  margin-bottom: 12px;
}

.profile {
  font-size: 14px;
  color: #6B7280;
  font-weight: 600;
  margin-bottom: 16px;
}

.quote {
  font-style: italic;
  color: #2C5F8D;
  padding-left: 24px;
  border-left: 3px solid #D67229;
  margin-top: 24px;
  font-size: 16px;
}

/* ====================================
   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);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-padding-top: 100px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #2C5F8D;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 16pt; }
}

/* END OF STYLES */
