/* ====================================
   HORIZON MINGLE - ELEGANT CLASSIC DESIGN
   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;
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  background-color: #F9F7F4;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Garamond', 'Georgia', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

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

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

h4 {
  font-size: 22px;
  margin-bottom: 14px;
}

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

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

a:hover {
  color: #DC2626;
}

strong {
  font-weight: 600;
  color: #1A1A1A;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.7;
}

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

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

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

/* ====================================
   BUTTONS - ELEGANT CLASSIC
   ==================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #1E3A8A;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease;
  letter-spacing: 0.5px;
}

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

.btn-primary:hover {
  background-color: #FFFFFF;
  color: #1E3A8A;
  border-color: #1E3A8A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #1E3A8A;
  border-color: #1E3A8A;
}

.btn-secondary:hover {
  background-color: #1E3A8A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.link-more {
  display: inline-block;
  color: #1E3A8A;
  font-weight: 500;
  border-bottom: 1px solid #1E3A8A;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.link-more:hover {
  color: #DC2626;
  border-bottom-color: #DC2626;
}

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

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

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

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

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

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2C2C2C;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #1E3A8A;
  border-bottom-color: #1E3A8A;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #1E3A8A;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
  transition: all 0.3s ease;
}

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

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

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

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

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2C2C2C;
  padding: 12px 0;
  border-bottom: 1px solid #E5E1DA;
  transition: all 0.3s ease;
}

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

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

.hero {
  background: linear-gradient(135deg, #F9F7F4 0%, #E8E4DD 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #E5E1DA;
}

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

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

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

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

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

/* ====================================
   NEWS SECTIONS
   ==================================== */

.featured-news,
.news-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.news-grid,
.services-grid,
.values-grid,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.news-card,
.service-card,
.value-item,
.testimonial-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 24px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.news-card.main {
  flex: 1 1 100%;
  padding: 32px;
}

.news-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

.category-tag {
  display: inline-block;
  background-color: #1E3A8A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.read-time,
.article-meta {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

.article-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ====================================
   SERVICES SECTION
   ==================================== */

.services {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

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

.service-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.service-card.featured {
  border: 2px solid #DC2626;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  transform: scale(1.02);
}

.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 600;
  color: #1E3A8A;
  margin: 16px 0;
}

/* ====================================
   VALUES & STATS
   ==================================== */

.values {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.value-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  border: none;
  background-color: #F9F7F4;
}

.value-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  border-radius: 4px;
}

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

.stat-number {
  display: block;
  font-size: 42px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #E5E1DA;
  letter-spacing: 0.5px;
}

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

.testimonials {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-left: 4px solid #1E3A8A;
  flex-direction: column;
  align-items: flex-start;
}

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

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

.testimonial-author strong {
  color: #1A1A1A;
  font-size: 16px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

.rating {
  color: #F59E0B;
  font-size: 20px;
  margin-top: 12px;
}

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

.cta-banner,
.cta-final,
.trial-cta,
.contact-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-banner h2,
.cta-final h2,
.trial-cta h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-final p {
  color: #E5E1DA;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background-color: #DC2626;
  border-color: #DC2626;
}

.cta-buttons .btn-primary:hover {
  background-color: #FFFFFF;
  color: #DC2626;
  border-color: #FFFFFF;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1E3A8A;
}

.guarantee,
.no-card-notice {
  font-size: 14px;
  color: #E5E1DA;
  font-style: italic;
}

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

footer {
  background-color: #1A1A1A;
  color: #E5E1DA;
  padding: 60px 20px 20px;
  border-top: 3px solid #2C2C2C;
}

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

.footer-col {
  flex: 1 1 200px;
}

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

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

.footer-col a {
  color: #C5C1B8;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-col p {
  color: #C5C1B8;
  font-size: 15px;
  line-height: 1.7;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2C2C2C;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* ====================================
   PAGE-SPECIFIC STYLES
   ==================================== */

.page-header {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #F9F7F4 0%, #E8E4DD 100%);
  text-align: center;
  border-bottom: 1px solid #E5E1DA;
}

.page-header h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: #4A4A4A;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #666;
}

.breadcrumb a {
  color: #1E3A8A;
}

.breadcrumb span {
  color: #666;
}

/* News Filters */
.news-filters {
  padding: 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E1DA;
}

.filter-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  color: #2C2C2C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
  background-color: #1E3A8A;
  color: #FFFFFF;
  border-color: #1E3A8A;
}

/* Breaking News */
.breaking-news {
  padding: 20px;
  background-color: #DC2626;
  color: #FFFFFF;
}

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

.breaking-label {
  background-color: #FFFFFF;
  color: #DC2626;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 14px;
  letter-spacing: 1px;
}

.breaking-time {
  font-size: 14px;
  opacity: 0.9;
}

/* Content Layout */
.content-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.main-content {
  flex: 1 1 65%;
}

.sidebar {
  flex: 1 1 30%;
  position: sticky;
  top: 100px;
}

.featured-story {
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 32px;
}

.featured-story .lead {
  font-size: 18px;
  line-height: 1.7;
  color: #2C2C2C;
  margin-bottom: 20px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-item {
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 24px;
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: #1E3A8A;
}

/* Sidebar Widgets */
.sidebar-widget {
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #1E3A8A;
  padding-bottom: 8px;
}

.trending-list {
  list-style: none;
  padding-left: 0;
  counter-reset: trending-counter;
}

.trending-list li {
  counter-increment: trending-counter;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.trending-list li::before {
  content: counter(trending-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1E3A8A;
  color: #FFFFFF;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-weight: 600;
  font-size: 12px;
}

.trending-list a {
  color: #2C2C2C;
  font-size: 15px;
  line-height: 1.5;
}

.trending-list a:hover {
  color: #1E3A8A;
}

/* Newsletter Widget */
.sidebar-widget.newsletter {
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  color: #FFFFFF;
}

.sidebar-widget.newsletter h3 {
  color: #FFFFFF;
  border-bottom-color: #FFFFFF;
}

.sidebar-widget.newsletter p {
  color: #E5E1DA;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.privacy-link {
  font-size: 12px;
  color: #E5E1DA;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
}

.service-card-detailed {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.service-card-detailed:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

.service-card-detailed.featured {
  border: 2px solid #DC2626;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF9F5 100%);
  position: relative;
}

.premium-badge,
.enterprise-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #DC2626;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.enterprise-badge {
  background-color: #F59E0B;
}

.service-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.service-content {
  flex: 1 1 400px;
}

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

.features-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.features-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1E3A8A;
  font-weight: 700;
  font-size: 18px;
}

.pricing-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 24px;
}

.pricing-box .price {
  margin: 0;
}

/* FAQ Section */
.faq {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

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

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  border-color: #1E3A8A;
}

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

/* Premium Page Hero */
.hero-premium {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  color: #FFFFFF;
  text-align: center;
}

.premium-badge-large {
  display: inline-block;
  background-color: #DC2626;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 4px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.hero-premium h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-premium .hero-subtitle,
.hero-premium .value-proposition {
  color: #E5E1DA;
  font-size: 20px;
  margin-bottom: 24px;
}

.pricing-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}

.price-large {
  font-size: 52px;
  font-weight: 600;
  color: #FFFFFF;
}

.trial-offer {
  font-size: 18px;
  color: #F59E0B;
  font-weight: 600;
}

/* Premium Features */
.premium-features {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

.feature-item img {
  width: 64px;
  height: 64px;
}

.frequency {
  display: inline-block;
  background-color: #1E3A8A;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 3px;
  margin-top: 8px;
}

/* Sample Content */
.sample-content {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.preview-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  border: 2px dashed #1E3A8A;
  border-radius: 4px;
  padding: 32px;
  position: relative;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.preview-card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.unlock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #DC2626;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.preview-meta {
  font-size: 14px;
  color: #666;
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

/* Expert Team */
.expert-team {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.experts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.expert-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.expert-photo-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.expert-title {
  color: #DC2626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pricing Premium */
.pricing-premium {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.pricing-cards {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pricing-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid #DC2626;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(220, 38, 38, 0.15);
}

.savings-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #DC2626;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.price-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid #E5E1DA;
  border-bottom: 1px solid #E5E1DA;
}

.price-display .price {
  font-size: 48px;
  margin: 0;
}

.period {
  font-size: 18px;
  color: #666;
}

.price-per-month {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.included-list {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
  text-align: left;
}

.included-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #2C2C2C;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1E3A8A;
  font-weight: 700;
  font-size: 18px;
}

.guarantee-text {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 32px;
  font-style: italic;
}

/* About Page */
.mission-vision {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.mission-grid {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.mission-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
}

.mission-icon,
.vision-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.values-list {
  margin-top: 40px;
  background-color: #F9F7F4;
  border-left: 4px solid #1E3A8A;
  padding: 32px;
  border-radius: 4px;
}

.values-list h3 {
  margin-bottom: 20px;
}

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

.values-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
}

.values-list li::before {
  content: "▪";
  position: absolute;
  left: 0;
  color: #1E3A8A;
  font-size: 20px;
}

/* Timeline */
.our-story {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

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

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #1E3A8A;
  border: 3px solid #F9F7F4;
  border-radius: 50%;
}

.year {
  display: inline-block;
  background-color: #1E3A8A;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
}

/* Statistics */
.statistics {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.stat-box {
  flex: 1 1 200px;
  text-align: center;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

.stat-box .stat-number {
  color: #1E3A8A;
}

.stat-box .stat-label {
  color: #2C2C2C;
}

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

/* Editorial Standards */
.editorial-standards {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.standards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.standard-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.standard-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* Team Section */
.team {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.team-category {
  margin-bottom: 48px;
}

.team-category h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1E3A8A;
  border-bottom: 2px solid #E5E1DA;
  padding-bottom: 12px;
}

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

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.member-photo-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  border-radius: 50%;
  margin: 0 auto 16px;
}

.member-position {
  color: #DC2626;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page */
.contact-methods {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 600;
  color: #1E3A8A;
  margin: 16px 0;
}

.availability,
.availability-info,
.response-time {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.form-container {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 40px;
}

.form-note {
  text-align: center;
  padding: 24px;
  background-color: #FFF9F5;
  border: 1px solid #F59E0B;
  border-radius: 4px;
  margin-bottom: 24px;
  color: #2C2C2C;
  line-height: 1.7;
}

.form-fields-display {
  opacity: 0.6;
}

.field-group {
  margin-bottom: 24px;
}

.field-group label {
  display: block;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.input-placeholder {
  height: 48px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
}

.textarea-placeholder {
  height: 120px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
}

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

/* Office Location */
.office-location {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.map-placeholder {
  flex: 1 1 55%;
  min-width: 300px;
  height: 400px;
  background-color: #E5E1DA;
  border: 1px solid #C5C1B8;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px;
}

.address-display {
  text-align: center;
  font-size: 16px;
  color: #2C2C2C;
  line-height: 1.7;
}

.location-details {
  flex: 1 1 35%;
  min-width: 280px;
}

.location-details h3 {
  margin-bottom: 20px;
}

.location-details p {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Departments */
.departments {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.department-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
}

.department-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

/* Business Hours */
.business-hours {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 40px auto 20px;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #E5E1DA;
}

.hours-table td {
  padding: 16px;
  font-size: 16px;
}

.hours-table td:first-child {
  font-weight: 600;
  color: #1A1A1A;
}

.hours-table td:last-child {
  text-align: right;
  color: #2C2C2C;
}

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

/* Response Guarantee */
.response-guarantee {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.guarantee-list {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 40px auto;
}

.guarantee-list li {
  padding: 16px 16px 16px 48px;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  margin-bottom: 16px;
  position: relative;
}

.guarantee-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: #1E3A8A;
  font-weight: 700;
  font-size: 20px;
}

.satisfaction-badge {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1E3A8A;
  margin-top: 32px;
}

/* Legal Pages */
.page-header.legal {
  padding-bottom: 60px;
}

.date-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.intro {
  font-size: 18px;
  color: #2C2C2C;
  font-weight: 500;
}

.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 32px;
  background-color: #F9F7F4;
  border-left: 4px solid #1E3A8A;
  border-radius: 4px;
}

.text-section h2 {
  color: #1E3A8A;
  font-size: 28px;
  margin-bottom: 20px;
}

.text-section h3 {
  color: #2C2C2C;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 16px;
}

.text-section ul,
.text-section ol {
  margin-left: 24px;
}

.note {
  background-color: #FFF9F5;
  border: 1px solid #F59E0B;
  border-radius: 4px;
  padding: 16px;
  margin-top: 20px;
  font-size: 14px;
  color: #2C2C2C;
}

/* Related Documents */
.related-docs {
  padding: 60px 20px;
  background-color: #F9F7F4;
  text-align: center;
}

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

.docs-links a {
  padding: 14px 28px;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  color: #1E3A8A;
  font-weight: 500;
  transition: all 0.3s ease;
}

.docs-links a:hover {
  background-color: #1E3A8A;
  color: #FFFFFF;
  border-color: #1E3A8A;
  transform: translateY(-2px);
}

/* Rights Exercise */
.rights-exercise {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.contact-methods {
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 24px;
  margin-top: 24px;
}

/* Supervisory Authority */
.supervisory-authority {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

/* Cookie Settings */
.cookie-settings {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.settings-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 40px auto;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  flex-wrap: wrap;
  gap: 12px;
}

.setting-item label {
  font-weight: 600;
  color: #1A1A1A;
  font-size: 16px;
}

.setting-status {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.setting-note {
  color: #666;
  font-size: 14px;
  width: 100%;
  margin-top: 8px;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2C4BA0 100%);
  color: #FFFFFF;
  text-align: center;
}

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

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

.confirmation-message {
  font-size: 20px;
  color: #E5E1DA;
  margin-bottom: 12px;
}

.next-steps {
  font-size: 16px;
  color: #E5E1DA;
}

/* What Next */
.what-next {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.steps-timeline {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1 1 250px;
  text-align: center;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-color: #1E3A8A;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.estimated-time {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1E3A8A;
  margin-top: 32px;
}

/* While Waiting */
.while-waiting {
  padding: 60px 20px;
  background-color: #F9F7F4;
}

.content-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.content-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background-color: #FFFFFF;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #1E3A8A;
}

/* Alternative Contact */
.alternative-contact {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-options {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-option {
  flex: 1 1 300px;
  text-align: center;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  padding: 32px;
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

/* Back Navigation */
.back-navigation {
  padding: 60px 20px;
  background-color: #F9F7F4;
  text-align: center;
}

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

/* Acceptance & Legal Contact */
.acceptance,
.legal-contact {
  padding: 60px 20px;
  background-color: #F9F7F4;
  text-align: center;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #E5E1DA;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-consent-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #E5E1DA;
}

.cookie-consent-text a {
  color: #F59E0B;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #1E3A8A;
  color: #FFFFFF;
  border-color: #1E3A8A;
}

.cookie-btn-accept:hover {
  background-color: #2C4BA0;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #E5E1DA;
  border-color: #E5E1DA;
}

.cookie-btn-reject:hover {
  background-color: #2C2C2C;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #F59E0B;
  border-color: #F59E0B;
}

.cookie-btn-settings:hover {
  background-color: #F59E0B;
  color: #1A1A1A;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #2C2C2C;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #DC2626;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F9F7F4;
  border: 1px solid #E5E1DA;
  border-radius: 4px;
}

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  h4 { font-size: 18px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero */
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 18px; }
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards & Grids */
  .news-card,
  .service-card,
  .value-item,
  .testimonial-card,
  .feature-item,
  .expert-card,
  .team-member {
    flex: 1 1 100%;
  }
  
  /* Content Layout */
  .content-layout {
    flex-direction: column;
  }
  
  .main-content,
  .sidebar {
    flex: 1 1 100%;
  }
  
  .sidebar {
    position: static;
  }
  
  /* Service Cards Detailed */
  .service-card-detailed {
    flex-direction: column;
    padding: 24px;
  }
  
  .service-icon {
    width: 64px;
    height: 64px;
  }
  
  /* Stats Bar */
  .stats-bar {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 24px;
  }
  
  /* Premium Hero */
  .hero-premium h1 { font-size: 36px; }
  .price-large { font-size: 42px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .news-card,
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .value-item {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .cta-final,
  .hero-cta {
    display: none;
  }
  
  body {
    color: #000;
    background-color: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}

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

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

/* END OF STYLES */