/* ==========================================
   BRIGHT LIQUIDITY - COMPREHENSIVE CSS
   Warm & Friendly Design Style
   ========================================== */

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

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

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

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

a:hover {
  color: #F7B731;
}

ul, ol {
  list-style-position: inside;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2E5CB8;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

strong {
  font-weight: 700;
  color: #333333;
}

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

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

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

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

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

header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2E5CB8;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-nav a:hover {
  background-color: #FFF3E0;
  color: #F7B731;
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2E5CB8;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(46, 92, 184, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #F7B731;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2E5CB8;
  padding: 14px 20px;
  border-radius: 12px;
  background-color: #FFF9F0;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.mobile-nav a:hover {
  background-color: #FFE4B5;
  transform: translateX(8px);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==========================================
   HERO SECTIONS
   ========================================== */

.hero {
  background: linear-gradient(135deg, #2E5CB8 0%, #4A90E2 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(46, 92, 184, 0.2);
}

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

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #FFE4B5;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  margin-top: 16px;
}

.hero-internal {
  background: linear-gradient(135deg, #4A90E2 0%, #6BB6FF 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

.hero-internal h1 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 16px;
}

.hero-internal .subtitle {
  text-align: center;
  font-size: 18px;
  color: #FFE4B5;
  margin-bottom: 24px;
}

/* ==========================================
   BREADCRUMB
   ========================================== */

.breadcrumb {
  text-align: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #FFE4B5;
}

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
}

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

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

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 24px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background-color: #F7B731;
  color: #2E5CB8;
}

.btn-primary:hover {
  background-color: #FFD700;
  color: #2E5CB8;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2E5CB8;
  border: 2px solid #2E5CB8;
}

.btn-secondary:hover {
  background-color: #2E5CB8;
  color: #FFFFFF;
}

.btn-large {
  font-size: 18px;
  padding: 16px 40px;
}

/* ==========================================
   CARD LAYOUTS
   ========================================== */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.value-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.languages-grid,
.categories-grid,
.resources-grid,
.method-grid,
.tools-grid,
.articles-grid,
.contact-grid,
.meanwhile-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.value-card,
.service-card,
.language-card,
.category-card,
.resource-card,
.method-card,
.tool-card,
.article-card,
.contact-card,
.meanwhile-card,
.team-member {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 280px;
  max-width: 380px;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.language-card:hover,
.category-card:hover,
.resource-card:hover,
.method-card:hover,
.tool-card:hover,
.article-card:hover,
.contact-card:hover,
.meanwhile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(46, 92, 184, 0.15);
}

.value-card img,
.service-card img,
.language-card img,
.category-card img,
.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.value-card h3,
.service-card h3,
.language-card h3,
.category-card h3,
.resource-card h3,
.method-card h3,
.tool-card h3,
.article-card h3,
.contact-card h3,
.meanwhile-card h3,
.team-member h3 {
  color: #2E5CB8;
  margin-bottom: 12px;
}

.value-card p,
.service-card p,
.language-card p,
.category-card p,
.resource-card p,
.method-card p,
.tool-card p,
.article-card p,
.contact-card p,
.meanwhile-card p {
  color: #666666;
  margin-bottom: 16px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #F7B731;
  margin-bottom: 16px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 550px;
  margin-bottom: 20px;
  border-left: 4px solid #F7B731;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #333333;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #2E5CB8;
  margin-bottom: 8px;
}

.rating {
  color: #F7B731;
  font-size: 20px;
  margin-top: 8px;
}

.rating-summary {
  text-align: center;
  font-weight: 600;
  color: #2E5CB8;
  margin-top: 24px;
}

/* ==========================================
   STATS SECTION
   ========================================== */

.stats {
  background: linear-gradient(135deg, #2E5CB8 0%, #4A90E2 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
}

.stat-card {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 280px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
}

.stat-card h3 {
  font-size: 48px;
  color: #F7B731;
  margin-bottom: 8px;
}

.stat-card p {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}

/* ==========================================
   TEXT-IMAGE SECTIONS
   ========================================== */

.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.text-image-section img {
  flex: 1 1 300px;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.text-image-section .text-content {
  flex: 1 1 400px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* ==========================================
   SERVICE DETAILED ITEMS
   ========================================== */

.services-detailed {
  margin-bottom: 60px;
}

.service-item {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.service-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.service-item h2 {
  color: #2E5CB8;
}

.service-item p {
  color: #666666;
}

/* ==========================================
   CTA SECTIONS
   ========================================== */

.cta-section {
  background: linear-gradient(135deg, #F7B731 0%, #FFD700 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  text-align: center;
}

.cta-section h2 {
  color: #2E5CB8;
  margin-bottom: 16px;
}

.cta-section p {
  color: #333333;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================
   BLOG & ARTICLE STYLES
   ========================================== */

.article-category {
  display: inline-block;
  background-color: #F7B731;
  color: #2E5CB8;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

.categories-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.category-link {
  padding: 10px 20px;
  background-color: #FFFFFF;
  border-radius: 20px;
  font-weight: 600;
  color: #2E5CB8;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.category-link:hover,
.category-link.active {
  background-color: #F7B731;
  color: #FFFFFF;
}

.popular-list {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.popular-list li {
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  color: #2E5CB8;
  font-weight: 600;
}

.popular-list li:last-child {
  border-bottom: none;
}

/* ==========================================
   RESOURCES STYLES
   ========================================== */

.resources-list {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
}

.resources-list li {
  padding: 12px 0;
  color: #666666;
  border-bottom: 1px solid #F0F0F0;
}

.resources-list li:last-child {
  border-bottom: none;
}

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

.video-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
  max-width: 350px;
  margin-bottom: 20px;
}

.video-card h3 {
  color: #2E5CB8;
  margin-bottom: 8px;
}

.video-card p {
  color: #999999;
  font-size: 14px;
}

/* ==========================================
   CONTACT & FORMS
   ========================================== */

.contact-form-info {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.contact-form-info p {
  margin-bottom: 16px;
  color: #666666;
}

.form-note {
  background-color: #FFF3E0;
  padding: 16px;
  border-radius: 12px;
  border-left: 4px solid #F7B731;
  margin-top: 24px;
}

.privacy-note {
  font-size: 14px;
  color: #999999;
  margin-top: 16px;
}

.privacy-note a {
  color: #2E5CB8;
  text-decoration: underline;
}

/* ==========================================
   LOCATION & OFFICE INFO
   ========================================== */

.location-info,
.office-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
}

.location-content,
.location-details {
  max-width: 800px;
  margin: 0 auto;
}

.location-details p {
  margin-bottom: 16px;
  color: #666666;
  font-size: 16px;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.faq-item p {
  color: #666666;
  margin-bottom: 0;
}

/* ==========================================
   LEGAL CONTENT
   ========================================== */

.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
}

.legal-content h2 {
  color: #2E5CB8;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #4A90E2;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #666666;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #4CAF50;
  margin: 0 auto 24px;
  font-weight: 700;
}

.thank-you-content h1 {
  color: #FFFFFF;
}

.thank-you-content .subtitle {
  color: #E8F5E9;
  font-size: 18px;
}

.confirmation,
.next-steps,
.meanwhile,
.testimonial-snippet,
.social-proof {
  margin-bottom: 60px;
}

.next-steps ol {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto 24px;
}

.next-steps li {
  margin-bottom: 16px;
  color: #666666;
  padding-left: 8px;
}

.return-home {
  text-align: center;
  margin-bottom: 60px;
}

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

footer {
  background-color: #2E5CB8;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-info p {
  color: #E0E0E0;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.footer-links h4 {
  color: #F7B731;
  margin-bottom: 16px;
  font-size: 18px;
}

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

.footer-links a {
  color: #E0E0E0;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #F7B731;
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  color: #B0BEC5;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1500;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-banner-text h3 {
  color: #2E5CB8;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-banner-text p {
  color: #666666;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-banner-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-preference {
  background-color: #FFF9F0;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.cookie-preference-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cookie-preference h3 {
  color: #2E5CB8;
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-toggle {
  display: inline-block;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #4CAF50;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

.cookie-preference p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .value-card,
  .service-card,
  .language-card,
  .category-card,
  .resource-card,
  .method-card,
  .tool-card,
  .article-card,
  .contact-card,
  .meanwhile-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-banner-content {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-banner-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .value-card,
  .service-card,
  .testimonial-card {
    padding: 24px;
  }
  
  .service-item {
    padding: 24px;
  }
}

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

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

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

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

/* ==========================================
   ANIMATIONS
   ========================================== */

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

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

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

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

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .hero,
  .hero-internal {
    background: none;
    color: #000000;
  }
}