/* ========================================
   HORIZON MENTOR - VIBRANT & ENERGETIC DESIGN
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ========================================
   VIBRANT COLOR SCHEME
   ======================================== */

:root {
  --primary: #FF3366;
  --secondary: #00D9FF;
  --accent: #FFD700;
  --dark: #1a1a1a;
  --light: #ffffff;
  --gray: #666666;
  --success: #00FF88;
  --energy: #FF0080;
  --electric: #00FFFF;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 40px;
  color: var(--dark);
}

h3 {
  font-size: 28px;
  color: var(--dark);
}

h4 {
  font-size: 20px;
  color: var(--dark);
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--gray);
}

strong {
  font-weight: 700;
  color: var(--dark);
}

/* ========================================
   HEADER
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light);
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
  padding: 16px 0;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(255, 51, 102, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

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

.cta-button {
  background: linear-gradient(135deg, var(--primary), var(--energy));
  color: var(--light);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.6);
}

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 150;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  z-index: 200;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: var(--light);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--light);
  font-size: 20px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  padding-left: 20px;
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav,
  .header .cta-button {
    display: none;
  }
}

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

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--energy));
  color: var(--light);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.4);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.6);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.4);
}

.btn-small {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--electric));
  color: var(--dark);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0, 217, 255, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.5);
}

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

.hero {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 217, 255, 0.05));
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.1), transparent);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: 20px;
  color: var(--gray);
  margin-bottom: 32px;
  animation: fadeInUp 1s ease;
}

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

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease;
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.trust-indicators span {
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
  padding: 8px 20px;
  background: rgba(255, 51, 102, 0.1);
  border-radius: 25px;
  border: 2px solid var(--primary);
}

/* ========================================
   HERO INTERNAL
   ======================================== */

.hero-internal {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 20px;
  margin-bottom: 60px;
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.hero-internal::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  border-radius: 50%;
}

.hero-internal h1 {
  color: var(--light);
  background: none;
  -webkit-text-fill-color: var(--light);
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

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

.breadcrumbs a {
  color: var(--accent);
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

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

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

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

section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

/* ========================================
   SERVICES OVERVIEW
   ======================================== */

.services-overview {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(255, 51, 102, 0.03));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  background: var(--light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 20px 20px 0 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 51, 102, 0.3);
  border-color: var(--primary);
}

.service-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 10px rgba(255, 51, 102, 0.3));
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

/* ========================================
   VALUE PROPOSITION
   ======================================== */

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

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

.value-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 217, 255, 0.05));
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.value-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 217, 255, 0.1));
}

.value-item img {
  width: 70px;
  height: 70px;
  filter: drop-shadow(0 4px 10px rgba(0, 217, 255, 0.3));
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 16px;
  color: var(--gray);
}

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

.testimonials {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 51, 102, 0.05));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: var(--light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
  border-left: 5px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 80px;
  color: rgba(255, 215, 0, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--dark);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

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

.testimonial-author strong {
  font-size: 18px;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--gray);
}

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

.stats {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 20px;
  margin-bottom: 60px;
  color: var(--light);
}

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

.stat-item {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 217, 255, 0.1));
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
  border-radius: 50%;
}

.cta-banner h2 {
  font-size: 40px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
}

/* ========================================
   SERVICES DETAILED
   ======================================== */

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

.service-block {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.1);
  border-left: 5px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.service-block:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(255, 51, 102, 0.2);
}

.service-block img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 4px 10px rgba(255, 51, 102, 0.3));
}

.service-block h2 {
  font-size: 32px;
  text-align: left;
  margin-bottom: 16px;
}

.service-block p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-block ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.service-block ul li {
  font-size: 16px;
  color: var(--gray);
  padding-left: 32px;
  position: relative;
}

.service-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 20px;
}

.service-block .price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

/* ========================================
   PROCESS
   ======================================== */

.process {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 51, 102, 0.05));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.process-step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  max-width: 300px;
  text-align: center;
  padding: 32px 20px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--electric));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
}

/* ========================================
   PORTFOLIO
   ======================================== */

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

.filter-btn {
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--energy));
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

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

.project-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 51, 102, 0.3);
}

.project-thumbnail {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.3), rgba(0, 217, 255, 0.3));
  position: relative;
}

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

.project-card p {
  font-size: 14px;
  padding: 0 20px;
  color: var(--gray);
  margin-bottom: 16px;
}

.project-card .tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #FFE55C);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 700;
  margin: 0 20px 20px;
  text-transform: uppercase;
}

/* ========================================
   RESULTS SHOWCASE
   ======================================== */

.results-showcase {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 215, 0, 0.05));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.result-stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 20px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.result-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
}

.result-stat .stat-number {
  font-size: 48px;
  color: var(--success);
  text-shadow: none;
}

.result-stat p {
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 0;
}

/* ========================================
   BLOG
   ======================================== */

.blog-featured {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(255, 215, 0, 0.05));
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.featured-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.1);
  position: relative;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--energy));
  color: var(--light);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.featured-article h2 {
  font-size: 36px;
  text-align: left;
  margin-bottom: 16px;
}

.featured-article p {
  font-size: 18px;
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-categories {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-tab {
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  background: var(--light);
  color: var(--dark);
  border: 2px solid var(--secondary);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-tab:hover,
.category-tab.active {
  background: linear-gradient(135deg, var(--secondary), var(--electric));
  color: var(--dark);
  border-color: var(--electric);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

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

.article-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  background: var(--light);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.2);
}

.category-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #FFE55C);
  color: var(--dark);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.article-card p {
  font-size: 15px;
  flex-grow: 1;
}

.article-card .article-meta {
  font-size: 12px;
  gap: 12px;
  margin-bottom: 0;
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter-signup {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 20px;
  color: var(--light);
}

.newsletter-signup h2 {
  color: var(--light);
  margin-bottom: 16px;
}

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

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

.email-input {
  flex: 1 1 300px;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-form .btn-primary {
  flex-shrink: 0;
}

.privacy-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 217, 255, 0.05));
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.2);
}

.method-card img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 4px 10px rgba(255, 51, 102, 0.3));
}

.method-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.method-card p {
  font-size: 16px;
  margin-bottom: 8px;
}

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

.contact-form-section {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(255, 51, 102, 0.03));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.1);
}

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

.form-field label {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 16px;
}

.input-field,
.textarea-field {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 51, 102, 0.2);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--light);
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary);
  font-weight: 700;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.form-wrapper .btn-primary {
  width: 100%;
  margin-top: 16px;
}

/* ========================================
   MAP SECTION
   ======================================== */

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

.map-placeholder {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 217, 255, 0.1));
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.1);
}

.map-placeholder p {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

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

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: var(--light);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.content-wrapper h2 {
  font-size: 28px;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--primary);
}

.content-wrapper h3 {
  font-size: 22px;
  text-align: left;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: left;
}

.content-wrapper ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-wrapper ul li {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 12px;
  padding-left: 12px;
  position: relative;
  list-style: none;
}

.content-wrapper ul li::before {
  content: '•';
  position: absolute;
  left: -12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.content-wrapper a {
  color: var(--primary);
  font-weight: 700;
}

.content-wrapper a:hover {
  text-decoration: underline;
}

/* ========================================
   COMPANY STORY
   ======================================== */

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

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

.mission,
.vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 217, 255, 0.05));
  border-radius: 20px;
  border-left: 5px solid var(--primary);
}

.mission h3,
.vision h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

/* ========================================
   VALUES
   ======================================== */

.values {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.03), rgba(255, 51, 102, 0.03));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.values .value-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
  border-top: 5px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
}

.values .value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.2);
}

/* ========================================
   EXPERTISE
   ======================================== */

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

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

.tech-category {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(255, 51, 102, 0.05));
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-category:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 51, 102, 0.1));
  transform: translateY(-5px);
}

.tech-category h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.tech-category p {
  font-size: 16px;
  color: var(--gray);
}

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

.thank-you-hero {
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success), #00CC77);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.4);
  animation: successPulse 2s ease infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.next-steps {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.03), rgba(0, 217, 255, 0.03));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.step-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 32px 20px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-note {
  text-align: center;
  font-size: 16px;
  color: var(--gray);
  font-style: italic;
}

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

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

.resource-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  padding: 32px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 51, 102, 0.2);
}

.resource-card h3 {
  font-size: 22px;
}

.resource-card p {
  flex-grow: 1;
}

.testimonial-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 51, 102, 0.05));
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.link-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), rgba(0, 217, 255, 0.05));
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(0, 217, 255, 0.1));
}

.link-card h3 {
  font-size: 22px;
}

.link-card p {
  flex-grow: 1;
}

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

.footer {
  background: linear-gradient(135deg, var(--dark), #2a2a2a);
  color: var(--light);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-column img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-column ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark), #2a2a2a);
  color: var(--light);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-text a {
  color: var(--accent);
  font-weight: 700;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--success), #00CC77);
  color: var(--light);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
}

.cookie-reject {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: var(--light);
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.cookie-settings:hover {
  background: var(--accent);
  color: var(--dark);
}

/* ========================================
   COOKIE SETTINGS MODAL
   ======================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--light);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--energy);
}

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

.cookie-category {
  padding: 20px;
  background: rgba(255, 51, 102, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

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

.cookie-category p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0;
}

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

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

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

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero-content h1 {
    font-size: 44px;
  }
  
  .service-card,
  .project-card,
  .article-card {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 14px 32px;
  }
  
  .service-card,
  .value-item,
  .project-card,
  .article-card,
  .process-step,
  .stat-item,
  .result-stat,
  .method-card,
  .resource-card,
  .link-card,
  .tech-category {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .mission,
  .vision {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .content-wrapper {
    padding: 40px 24px;
  }
  
  .form-wrapper {
    padding: 32px 24px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .service-block {
    padding: 24px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .featured-article {
    padding: 24px;
  }
  
  .featured-article h2 {
    font-size: 28px;
  }
}

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

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

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .header,
  .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
  
  h3 {
    font-size: 14pt;
  }
}