/* ============================================
   SLICKPROTECT - PROFESSIONAL CORPORATE DESIGN
   Modern Financial Services Styling
   ============================================ */

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

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

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

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

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

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

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

table {
  border-collapse: collapse;
  width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1E3A5F;
  margin-bottom: 16px;
}

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

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

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

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

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

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

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

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

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

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

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #1E3A5F;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  transition: color 0.3s ease;
}

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

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

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #1E3A5F;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #1E3A5F;
  z-index: 1999;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.mobile-nav a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  line-height: 1.5;
}

.btn-primary {
  background-color: #2E7D87;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(46, 125, 135, 0.2);
}

.btn-primary:hover {
  background-color: #246066;
  box-shadow: 0 6px 16px rgba(46, 125, 135, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #1E3A5F;
  border: 2px solid #1E3A5F;
}

.btn-secondary:hover {
  background-color: #1E3A5F;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

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

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

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

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

.hero-subheadline {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.trust-item span {
  font-weight: 600;
  font-size: 14px;
}

/* ============================================
   PAGE HERO (INTERNAL PAGES)
   ============================================ */

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

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

.page-hero p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

.updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* ============================================
   CARDS & GRIDS
   ============================================ */

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

.benefit-card,
.service-card,
.testimonial-card,
.category-card,
.guide-card,
.value-card,
.option-card,
.info-card,
.stat-card,
.topic-card,
.term-card,
.action-card,
.right-card,
.step {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.guide-card:hover,
.option-card:hover,
.action-card:hover {
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
  transform: translateY(-4px);
}

.benefits-grid,
.services-grid,
.category-grid,
.guides-grid,
.topics-grid,
.terms-grid,
.options-grid,
.info-grid,
.stats-grid,
.actions-grid,
.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.benefits-grid .benefit-card,
.category-grid .category-card,
.topics-grid .topic-card,
.terms-grid .term-card,
.rights-grid .right-card {
  flex: 1 1 100%;
}

.services-grid .service-card,
.guides-grid .guide-card,
.options-grid .option-card,
.info-grid .info-card,
.actions-grid .action-card {
  flex: 1 1 100%;
}

.stats-grid .stat-card {
  flex: 1 1 calc(50% - 12px);
}

/* ============================================
   SERVICE CARDS
   ============================================ */

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

.service-card p {
  color: #4A5568;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2E7D87;
  margin: 16px 0;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4A5568;
}

.service-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2E7D87;
  font-weight: 700;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

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

.testimonials {
  background-color: #F0F4F8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #1E3A5F;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background-color: #FFFFFF;
  flex: 1 1 100%;
  max-width: 600px;
  padding: 32px;
  border-left: 4px solid #2E7D87;
}

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

.customer-name {
  font-weight: 600;
  color: #1E3A5F;
  font-style: normal;
  font-size: 15px;
  margin-bottom: 8px;
}

.rating {
  color: #F4A261;
  font-size: 20px;
  letter-spacing: 2px;
}

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

.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.value-proposition h2 {
  text-align: center;
  color: #1E3A5F;
  margin-bottom: 48px;
  font-size: 36px;
}

.section-subheadline {
  text-align: center;
  color: #4A5568;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-banner {
  background: linear-gradient(135deg, #1E3A5F 0%, #2E7D87 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 16px;
}

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

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

.cta-banner .cta-buttons {
  justify-content: center;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */

.comparison-table {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
}

.comparison-table h2 {
  margin-bottom: 32px;
  color: #1E3A5F;
}

.table-wrapper {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

table {
  width: 100%;
  min-width: 600px;
  background-color: #FFFFFF;
}

thead {
  background-color: #1E3A5F;
  color: #FFFFFF;
}

thead th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

tbody tr {
  border-bottom: 1px solid #E2E8F0;
  transition: background-color 0.2s ease;
}

tbody tr:hover {
  background-color: #F7FAFC;
}

tbody td {
  padding: 16px;
  color: #4A5568;
  font-size: 15px;
}

tbody td:first-child {
  font-weight: 600;
  color: #1E3A5F;
}

/* ============================================
   FILTER SECTION
   ============================================ */

.filter-section {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.filter-section h2 {
  margin-bottom: 24px;
  color: #1E3A5F;
  font-size: 24px;
}

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

.filter-group {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 600;
  color: #1E3A5F;
  font-size: 14px;
}

.filter-group select {
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 15px;
  color: #2C3E50;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.filter-group select:focus {
  outline: none;
  border-color: #2E7D87;
}

/* ============================================
   FORMS
   ============================================ */

.contact-form-section,
.newsletter-signup {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.form-wrapper,
.signup-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #1E3A5F;
  font-size: 14px;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2C3E50;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #2E7D87;
}

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

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  color: #4A5568;
  font-size: 14px;
}

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

.checkbox-label a {
  color: #2E7D87;
  text-decoration: underline;
}

.response-time,
.privacy-note {
  text-align: center;
  font-size: 13px;
  color: #718096;
  margin-top: 16px;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.signup-form input[type="email"] {
  flex: 1 1 250px;
  padding: 12px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 15px;
}

.signup-form .btn {
  flex: 0 0 auto;
}

/* ============================================
   PROCESS & TIMELINE
   ============================================ */

.service-process,
.story-section {
  margin-bottom: 60px;
}

.process-steps,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.step,
.timeline-item {
  flex: 1 1 100%;
  text-align: center;
}

.step h3,
.timeline-item h4 {
  color: #2E7D87;
  font-size: 20px;
  margin-bottom: 12px;
}

/* ============================================
   STATISTICS
   ============================================ */

.statistics-section {
  background-color: #F0F4F8;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 12px;
}

.statistics-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
}

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

.stat-card p {
  font-size: 16px;
  color: #4A5568;
  font-weight: 500;
}

/* ============================================
   GUIDES & CATEGORIES
   ============================================ */

.guide-categories,
.featured-guides,
.topics-section,
.glossary-preview {
  margin-bottom: 60px;
}

.article-count,
.meta {
  display: inline-block;
  background-color: #F0F4F8;
  color: #1E3A5F;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 12px;
}

/* ============================================
   EVALUATION CRITERIA & LISTS
   ============================================ */

.evaluation-criteria,
.methodology-section {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.evaluation-criteria h2,
.methodology-section h2 {
  margin-bottom: 24px;
  color: #1E3A5F;
}

.evaluation-criteria ul,
.methodology-section ol {
  list-style-position: outside;
  padding-left: 24px;
}

.evaluation-criteria li,
.methodology-section li {
  margin-bottom: 16px;
  color: #4A5568;
  line-height: 1.7;
}

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

.faq-section {
  margin-bottom: 60px;
}

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

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.faq-item h4 {
  color: #1E3A5F;
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.content-wrapper h2 {
  color: #1E3A5F;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #E2E8F0;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: #2E7D87;
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.content-wrapper li {
  margin-bottom: 12px;
  color: #4A5568;
  line-height: 1.7;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #2E7D87 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  color: #2E7D87;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.confirmation-section,
.next-actions-section,
.social-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.confirmation-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.next-steps {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.next-steps li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4A5568;
  line-height: 1.6;
}

.next-steps li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2E7D87;
  font-weight: 700;
  font-size: 18px;
}

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

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1E3A5F;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #2E7D87;
  transform: translateY(-2px);
}

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

footer {
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 100%;
}

.footer-section h4 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

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

.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 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.6);
  font-size: 14px;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E3A5F;
  color: #FFFFFF;
  padding: 20px;
  z-index: 1998;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.active {
  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 300px;
}

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

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-accept {
  background-color: #2E7D87;
  color: #FFFFFF;
  border: none;
}

.btn-accept:hover {
  background-color: #246066;
}

.btn-reject,
.btn-settings {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-reject:hover,
.btn-settings:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #718096;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #1E3A5F;
}

.cookie-modal h2 {
  color: #1E3A5F;
  margin-bottom: 24px;
}

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

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

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

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

.cookie-toggle.active {
  background-color: #2E7D87;
}

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

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

.cookie-toggle.active:before {
  left: 27px;
}

.cookie-category p {
  color: #4A5568;
  font-size: 14px;
  margin-top: 8px;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 auto;
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

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

  .cta-buttons {
    justify-content: center;
  }

  .benefits-grid .benefit-card,
  .category-grid .category-card,
  .topics-grid .topic-card,
  .terms-grid .term-card {
    flex: 1 1 calc(50% - 12px);
  }

  .services-grid .service-card,
  .guides-grid .guide-card {
    flex: 1 1 calc(50% - 12px);
  }

  .testimonials-grid {
    flex-direction: row;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .filter-group {
    flex: 1 1 calc(50% - 10px);
  }

  .stats-grid .stat-card {
    flex: 1 1 calc(25% - 18px);
  }

  .process-steps .step,
  .timeline .timeline-item {
    flex: 1 1 calc(50% - 12px);
  }

  .footer-section {
    flex: 1 1 calc(25% - 30px);
  }

  .signup-form input[type="email"] {
    flex: 1 1 300px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 120px 20px;
  }

  .benefits-grid .benefit-card {
    flex: 1 1 calc(25% - 18px);
  }

  .services-grid .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .guides-grid .guide-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .category-grid .category-card,
  .topics-grid .topic-card,
  .terms-grid .term-card,
  .rights-grid .right-card {
    flex: 1 1 calc(25% - 18px);
  }

  .process-steps .step {
    flex: 1 1 calc(25% - 18px);
  }

  .content-wrapper {
    padding: 64px;
  }
}

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

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

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

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

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

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

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .btn {
    display: none;
  }

  body {
    background-color: #FFFFFF;
  }

  .container {
    max-width: 100%;
  }
}