/* ===================================
   BRISK & BRIGHT - CREATIVE ARTISTIC CSS
   Design Style: Creative & Artistic
   ================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #fef5e7 100%);
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A4D8F;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1A4D8F 0%, #E67E22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E67E22, #f39c12);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2c3e50;
}

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

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

a:hover {
  color: #d35400;
  transform: translateY(-2px);
}

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

li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #34495e;
}

li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-size: 14px;
}

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

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

/* HEADER STYLES */
header {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  box-shadow: 0 4px 20px rgba(26, 77, 143, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(-3deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #E67E22;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #E67E22;
  background: rgba(255,255,255,0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E67E22, #f39c12);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E67E22;
  color: #E67E22;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(230, 126, 34, 0.3);
  border-left-color: #E67E22;
  transform: translateX(10px);
}

/* BUTTONS - CREATIVE ARTISTIC */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #f39c12 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d35400 0%, #e67e22 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.6);
}

.btn-secondary {
  background: white;
  color: #1A4D8F;
  border: 3px solid #1A4D8F;
  box-shadow: 0 4px 15px rgba(26, 77, 143, 0.2);
}

.btn-secondary:hover {
  background: #1A4D8F;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.4);
}

.btn-link {
  background: transparent;
  color: #E67E22;
  padding: 8px 20px;
  font-weight: 600;
  text-decoration: underline;
}

.btn-link:hover {
  color: #d35400;
  transform: translateX(5px);
}

button[type="submit"] {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(26, 77, 143, 0.3);
}

button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 77, 143, 0.5);
}

/* HERO SECTION - CREATIVE ARTISTIC */
.hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 50%, #E67E22 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(230, 126, 34, 0.2);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.hero-subheadline {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #fef5e7;
}

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

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

.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  padding: 12px 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
}

/* HERO SMALL */
.hero-small {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  color: white;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-small::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(230, 126, 34, 0.2);
  border-radius: 50%;
}

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

.breadcrumb a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

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

.hero-small h1 {
  color: white;
  -webkit-text-fill-color: white;
  font-size: 42px;
}

/* CARDS & GRIDS - FLEXBOX ONLY */
.value-grid,
.service-grid,
.testimonial-grid,
.stats-grid,
.category-grid,
.article-grid,
.contact-grid,
.trust-grid,
.metrics-grid,
.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card,
.service-card,
.testimonial-card,
.stat-card,
.category-card,
.article-card,
.contact-card,
.trust-item,
.metric-card,
.download-card,
.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.value-card::before,
.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E67E22, #f39c12);
}

.value-card:hover,
.service-card:hover,
.category-card:hover,
.article-card:hover,
.download-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 35px rgba(230, 126, 34, 0.3);
  border-color: #E67E22;
}

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

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

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E67E22;
  margin: 20px 0;
}

/* TESTIMONIALS - ARTISTIC STYLE */
.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  background: linear-gradient(135deg, #fef5e7 0%, #fdebd0 100%);
  padding: 32px;
  border-left: 5px solid #E67E22;
  position: relative;
  color: #2c3e50;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(230, 126, 34, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: #2c3e50;
}

.client-name,
.client-info {
  font-weight: 700;
  color: #1A4D8F;
  font-style: normal;
  font-size: 14px;
}

/* STATISTICS */
.statistics {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.statistics span {
  font-size: 20px;
  font-weight: 700;
  color: #1A4D8F;
  padding: 16px 32px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-card,
.metric-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  color: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(26, 77, 143, 0.3);
}

.stat-number,
.metric-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #E67E22;
  margin-bottom: 10px;
}

.stat-label,
.metric-label {
  display: block;
  font-size: 16px;
  color: white;
}

/* FORMS - CREATIVE STYLING */
.form-container {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border: 3px solid #E67E22;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #1A4D8F;
  font-size: 16px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-field.checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
}

.form-field.checkbox label {
  flex: 1;
  margin-bottom: 0;
  font-size: 14px;
}

/* CONTENT SECTIONS */
.content-section,
.philosophy-section,
.credentials-section,
.legal-content {
  background: white;
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.content-section h2,
.philosophy-section h2 {
  margin-bottom: 30px;
}

.content-section p,
.philosophy-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #fef5e7 0%, #ffffff 100%);
  border-radius: 15px;
  border-left: 4px solid #E67E22;
  margin-bottom: 20px;
}

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

/* SERVICE DETAILS */
.services-detailed {
  margin-top: 40px;
}

.service-item {
  background: white;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left: 6px solid #E67E22;
  position: relative;
}

.service-item h2 {
  color: #1A4D8F;
  margin-bottom: 20px;
}

.service-item h3 {
  color: #2c3e50;
  margin: 24px 0 16px;
  font-size: 20px;
}

.service-item ul {
  margin: 20px 0;
}

/* PROCESS STEPS */
.process-steps,
.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: relative;
  margin-bottom: 20px;
}

.step::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E67E22, #f39c12);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

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

.step p {
  color: #34495e;
  font-size: 15px;
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, #E67E22 0%, #f39c12 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.cta-section h2 {
  color: white;
  font-size: 38px;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
  color: white;
}

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

.contact-info {
  font-size: 18px;
  color: white;
  margin-top: 24px;
}

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

/* CASE STUDIES */
.case-study {
  background: white;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border-left: 5px solid #1A4D8F;
}

.case-study h3 {
  color: #E67E22;
  margin-bottom: 16px;
}

.case-study p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.case-study p strong {
  color: #1A4D8F;
  font-weight: 700;
}

/* FAQ SECTION */
.faq-list {
  margin-top: 40px;
}

.faq-item {
  background: white;
  padding: 28px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid #E67E22;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.2);
}

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

.faq-item p {
  color: #34495e;
  line-height: 1.7;
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  color: white;
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
}

.newsletter-section h2 {
  color: white;
  margin-bottom: 20px;
}

.newsletter-section p {
  color: white;
  font-size: 18px;
  margin-bottom: 24px;
}

.newsletter-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.newsletter-benefits li {
  color: white;
  padding-left: 30px;
}

.newsletter-benefits li::before {
  color: #E67E22;
  font-size: 16px;
}

.privacy-note {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-top: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  border-radius: 20px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 20px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  color: white;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
}

.legal-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
}

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

.legal-date {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

.legal-content h2 {
  color: #1A4D8F;
  margin-top: 40px;
  margin-bottom: 20px;
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A4D8F 0%, #2874bd 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-brand img {
  height: 50px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.tagline {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.6;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

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

.footer-column h4 {
  color: #E67E22;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #E67E22;
  transform: translateX(5px);
}

.footer-column p {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #229954, #27ae60);
  transform: scale(1.05);
}

.cookie-reject {
  background: #e74c3c;
  color: white;
}

.cookie-reject:hover {
  background: #c0392b;
  transform: scale(1.05);
}

.cookie-settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cookie-settings:hover {
  background: rgba(255,255,255,0.1);
}

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

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

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #7f8c8d;
  transition: all 0.3s ease;
}

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

.modal-content h2 {
  color: #1A4D8F;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #E67E22;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #27ae60;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

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

.modal-actions button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.save-preferences {
  background: linear-gradient(135deg, #1A4D8F, #2874bd);
  color: white;
}

.save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 77, 143, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-subheadline {
    font-size: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  .value-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .category-card,
  .article-card,
  .contact-card,
  .metric-card,
  .download-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .value-item {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .process-steps,
  .steps-timeline {
    flex-direction: column;
  }

  section {
    padding: 30px 15px;
  }

  .form-container {
    padding: 24px;
  }

  .modal-content {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .category-card,
  .article-card {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-card,
  .metric-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #E67E22;
  outline-offset: 3px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* ANIMATIONS */
@keyframes slideInFromBottom {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

.slide-in {
  animation: slideInFromBottom 0.6s ease-out;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* SELECTION STYLING */
::selection {
  background: #E67E22;
  color: white;
}

::-moz-selection {
  background: #E67E22;
  color: white;
}

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

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

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

.section-subheadline {
  font-size: 20px;
  color: #34495e;
  margin-bottom: 32px;
  text-align: center;
}

.read-time,
.file-info,
.response-info {
  font-size: 14px;
  color: #7f8c8d;
  font-style: italic;
  margin-top: 12px;
}

.rating-summary {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f39c12 0%, #E67E22 100%);
  border-radius: 20px;
  color: white;
  margin: 40px 0;
}

.rating-number {
  font-size: 72px;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.rating-stars {
  font-size: 32px;
  color: #f1c40f;
  display: block;
  margin-bottom: 10px;
}

.rating-highlights {
  margin-top: 20px;
  font-size: 18px;
  font-style: italic;
}

.location-info {
  background: white;
  padding: 32px;
  border-radius: 15px;
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.location-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.location-info strong {
  color: #1A4D8F;
  font-weight: 700;
}

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