.elementor-313 .elementor-element.elementor-element-c8989d5{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-06f5b67 *//* ==========================================================================
   KØREKORT FORNYELSE PAGE - CSS ESPECÍFICO
   ========================================================================== */

/* Variables específicas para renovación */
:root {
  --renew-primary: #00205B;
  --renew-secondary: #C8102E;
  --renew-accent: #10B981;
  --renew-warning: #F59E0B;
  --renew-danger: #DC2626;
  --renew-senior: #7C3AED;
}

/* Reset y base */
.fornyelse-korekort-page {
  font-family: 'Open Sans', sans-serif;
  color: #374151;
  line-height: 1.6;
}

/* Hero Section Fornyelse */
.hero-fornyelse-section {
  background: linear-gradient(135deg, #00205B 0%, #1E3A8A 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-fornyelse-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
}

.hero-fornyelse-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fornyelse-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 50px;
  padding: 10px 25px;
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

.badge-icon {
  font-size: 20px;
}

.badge-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.main-title-fornyelse {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.subtitle-fornyelse {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Fornyelse stats grid */
.fornyelse-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin: 50px auto;
  max-width: 900px;
}

.fornyelse-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.fornyelse-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.stat-content {
  flex-grow: 1;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #FFD700;
  margin-bottom: 5px;
}

.stat-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  opacity: 0.9;
}

/* Hero actions */
.hero-fornyelse-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
  flex-wrap: wrap;
}

.btn-fornyelse-primary {
  background: #DC2626;
  color: white;
  padding: 16px 45px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: 2px solid #DC2626;
  transition: all 0.3s ease;
}

.btn-fornyelse-primary:hover {
  background: #B91C1C;
  border-color: #B91C1C;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.btn-fornyelse-secondary {
  background: transparent;
  color: white;
  padding: 16px 45px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-fornyelse-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Fornyelse warning */
.fornyelse-warning {
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 12px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 30px auto 0;
}

.warning-icon {
  font-size: 30px;
  flex-shrink: 0;
}

.warning-content p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

/* TOC Fornyelse Section - TEXTO NEGRO */
.toc-fornyelse-section {
  padding: 60px 0;
  background: #F8FAFC;
  color: #000000 !important; /* TEXTO NEGRO */
}

.toc-fornyelse-wrapper {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
}

.toc-fornyelse-header {
  text-align: center;
  margin-bottom: 40px;
}

.toc-fornyelse-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1F2937 !important; /* NEGRO/GRIS OSCURO */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.toc-fornyelse-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #374151 !important; /* GRIS OSCURO */
  max-width: 600px;
  margin: 0 auto;
}

.toc-fornyelse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.toc-fornyelse-category {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 30px;
  border-left: 4px solid #10B981;
}

.toc-fornyelse-category h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #00205B !important; /* AZUL OSCURO */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toc-fornyelse-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-fornyelse-links li {
  margin-bottom: 12px;
}

.toc-fornyelse-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151 !important; /* GRIS OSCURO */
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.toc-fornyelse-links a:hover {
  color: #C8102E !important; /* ROJO EN HOVER */
  padding-left: 10px;
  background: #F3F4F6;
}

.link-icon {
  font-size: 20px;
  width: 30px;
  flex-shrink: 0;
  color: #00205B !important; /* ICONOS AZULES */
}

/* Excel note - TEXTO NEGRO */
.excel-fornyelse-note {
  background: #F3F4F6 !important; /* FONDO GRIS CLARO */
  border: 1px solid #E5E7EB !important;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
}

.excel-note-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: #00205B !important; /* ICONO AZUL OSCURO */
}

.excel-note-content p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151 !important; /* TEXTO GRIS OSCURO */
  line-height: 1.6;
}

.excel-note-content strong {
  color: #00205B !important; /* AZUL OSCURO PARA ÉNFASIS */
}

.excel-note-content em {
  color: #6B7280 !important; /* GRIS PARA TEXTO MENOS IMPORTANTE */
  font-style: italic;
}

/* Standard Fornyelse Section */
.standard-fornyelse-section {
  padding: 80px 0;
  background: white;
}

.section-header-fornyelse {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-fornyelse h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: #1F2937;
  margin-bottom: 15px;
}

.section-header-fornyelse p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Fornyelse timeline */
.fornyelse-timeline {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
}

.fornyelse-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #E5E7EB;
  z-index: 1;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.timeline-marker {
  background: #10B981;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 3;
  border: 4px solid white;
}

.timeline-content {
  flex-grow: 1;
  background: #F8FAFC;
  border-radius: 16px;
  padding: 30px;
  border-left: 5px solid #10B981;
}

.timeline-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #1F2937;
  margin-bottom: 20px;
}

/* Timeline details */
.timeline-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.detail-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #E5E7EB;
}

.detail-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: #10B981;
}

.detail-text {
  flex-grow: 1;
}

.detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1F2937;
  margin-bottom: 5px;
}

.detail-note {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin-top: 5px;
}

/* Requirements grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.requirement {
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #E5E7EB;
}

.req-icon {
  font-size: 32px;
  color: #00205B;
  margin-bottom: 15px;
}

.req-text {
  flex-grow: 1;
}

.req-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1F2937;
  margin-bottom: 5px;
}

.req-text p {
  margin: 0 0 8px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
}

.req-note {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  font-style: italic;
}

/* Timeline process */
.timeline-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid #E5E7EB;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  border-color: #10B981;
  transform: translateY(-5px);
}

.step-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #00205B;
}

.step-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 8px;
}

.step-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.step-time {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}

/* Fornyelse options */
.fornyelse-options {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.fornyelse-options h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #1F2937;
  margin-bottom: 30px;
  text-align: center;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.option-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.online-option {
  border-top: 5px solid #10B981;
}

.service-option {
  border-top: 5px solid #3B82F6;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F3F4F6;
}

.option-icon {
  font-size: 40px;
}

.online-option .option-icon {
  color: #10B981;
}

.service-option .option-icon {
  color: #3B82F6;
}

.option-header h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #1F2937;
  margin: 0;
}

.option-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.option-features li {
  padding: 10px 0;
  border-bottom: 1px solid #F3F4F6;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-features li:last-child {
  border-bottom: none;
}

.feature-yes {
  color: #10B981;
}

.feature-no {
  color: #EF4444;
}

.option-btn {
  display: inline-block;
  background: #00205B;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #00205B;
}

.option-btn:hover {
  background: #C8102E;
  border-color: #C8102E;
  transform: translateY(-2px);
}

.option-btn.secondary {
  background: #3B82F6;
  border-color: #3B82F6;
}

.option-btn.secondary:hover {
  background: #2563EB;
  border-color: #2563EB;
}

/* Senior Fornyelse Section */
.senior-fornyelse-section {
  padding: 80px 0;
  background: #F8FAFC;
}

/* Senior comparison */
.senior-comparison {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.comparison-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.comparison-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.comparison-card.highlighted {
  border: 3px solid #7C3AED;
  background: linear-gradient(to bottom, #FFFFFF, #F5F3FF);
}

.comparison-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F3F4F6;
}

.comparison-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1F2937;
  margin: 0;
}

.comparison-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

.comparison-badge.normal {
  background: #D1FAE5;
  color: #065F46;
}

.comparison-badge.special {
  background: #EDE9FE;
  color: #5B21B6;
}

.comparison-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-features li {
  padding: 15px 0;
  border-bottom: 1px solid #F3F4F6;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comparison-features li:last-child {
  border-bottom: none;
}

.feature-yes {
  color: #10B981;
}

.feature-no {
  color: #EF4444;
}

.feature-maybe {
  color: #F59E0B;
}

/* Senior process */
.senior-process {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.senior-process h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #1F2937;
  margin-bottom: 30px;
  text-align: center;
}

.process-steps-senior {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}

.senior-step {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: #F8FAFC;
  border-radius: 16px;
  border-left: 5px solid #7C3AED;
}

.step-number {
  background: #7C3AED;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1F2937;
  margin-bottom: 15px;
}

.step-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.6;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.step-content li {
  padding: 8px 0;
  border-bottom: 1px solid #E5E7EB;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-content li:before {
  content: "•";
  color: #7C3AED;
  font-weight: bold;
  font-size: 20px;
}

.step-cost {
  margin-top: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 2px solid #7C3AED;
  display: inline-block;
}

.step-cost strong {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #7C3AED;
}

/* Declaration cards */
.declaration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.declaration-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 3px solid transparent;
}

.declaration-card.green {
  border-color: #10B981;
  background: #F0FDF4;
}

.declaration-card.yellow {
  border-color: #F59E0B;
  background: #FFFBEB;
}

.declaration-card.red {
  border-color: #EF4444;
  background: #FEF2F2;
}

.declaration-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.declaration-card.green .declaration-icon {
  color: #10B981;
}

.declaration-card.yellow .declaration-icon {
  color: #F59E0B;
}

.declaration-card.red .declaration-icon {
  color: #EF4444;
}

.declaration-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1F2937;
  margin-bottom: 5px;
}

.declaration-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

/* Test info */
.test-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.test-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  border-radius: 10px;
  padding: 20px;
  border: 2px solid #E5E7EB;
}

.detail-icon {
  font-size: 32px;
  color: #7C3AED;
  flex-shrink: 0;
}

.detail-text {
  flex-grow: 1;
}

.detail-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1F2937;
  margin-bottom: 5px;
}

.step-note {
  margin-top: 15px;
  padding: 15px;
  background: #F3F4F6;
  border-radius: 8px;
  border-left: 4px solid #6B7280;
}

.step-note p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}

/* Total cost senior */
.total-cost-senior {
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  border-radius: 16px;
  padding: 40px;
  color: white;
  margin-top: 40px;
}

.total-cost-senior h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  color: white;
}

.cost-breakdown {
  max-width: 600px;
  margin: 0 auto;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cost-item.optional {
  opacity: 0.7;
}

.cost-label {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
}

.cost-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.cost-total {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 18px;
}

.cost-total.with-test {
  border-top: none;
  padding-top: 10px;
  font-size: 16px;
  opacity: 0.9;
}

.total-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.total-amount {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.cost-total.with-test .total-amount {
  font-size: 20px;
}

/* Price Fornyelse Section */
.price-fornyelse-section {
  padding: 80px 0;
  background: white;
}

.price-table-fornyelse {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.detailed-price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.detailed-price-table thead {
  background: #00205B;
  color: white;
}

.detailed-price-table th {
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}

.detailed-price-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
  transition: background 0.3s ease;
}

.detailed-price-table tbody tr:hover {
  background: #F8FAFC;
}

.detailed-price-table td {
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151;
}

.detailed-price-table tr.highlighted {
  background: #F0F9FF;
  border-left: 4px solid #3B82F6;
}

.detailed-price-table tr.warning-row {
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
}

.detailed-price-table td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #1F2937;
}

/* Price notes */
.price-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.note-card {
  border-radius: 16px;
  padding: 30px;
  border-top: 5px solid transparent;
}

.note-card.important {
  border-color: #EF4444;
  background: #FEF2F2;
}

.note-card.tip {
  border-color: #10B981;
  background: #F0FDF4;
}

.note-card .note-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.note-card.important .note-icon {
  color: #EF4444;
}

.note-card.tip .note-icon {
  color: #10B981;
}

.note-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1F2937;
  margin-bottom: 20px;
}

.note-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.note-content li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 10px;
}

.note-content li:before {
  content: "•";
  color: inherit;
  font-weight: bold;
  font-size: 20px;
}

.note-content li:last-child {
  border-bottom: none;
}

/* Problems Section */
.problems-fornyelse-section {
  padding: 80px 0;
  background: #F8FAFC;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.problem-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 5px solid transparent;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.problem-card.urgent {
  border-color: #EF4444;
}

.problem-card.warning {
  border-color: #F59E0B;
}

.problem-card.serious {
  border-color: #7C3AED;
}

.problem-card.minor {
  border-color: #6B7280;
}

.problem-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #F3F4F6;
}

.problem-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #1F2937;
  margin: 0;
  flex-grow: 1;
}

.problem-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
  margin-left: 15px;
}

.problem-card.urgent .problem-tag {
  background: #FEE2E2;
  color: #991B1B;
}

.problem-card.warning .problem-tag {
  background: #FEF3C7;
  color: #92400E;
}

.problem-card.serious .problem-tag {
  background: #EDE9FE;
  color: #5B21B6;
}

.problem-card.minor .problem-tag {
  background: #F3F4F6;
  color: #4B5563;
}

.problem-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151;
  margin-bottom: 15px;
  line-height: 1.6;
}

.problem-content ol {
  padding-left: 20px;
  margin: 15px 0;
}

.problem-content li {
  padding: 8px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #6B7280;
}

.problem-content strong {
  color: #00205B;
}

.problem-note {
  margin-top: 20px;
  padding: 15px;
  background: #F3F4F6;
  border-radius: 8px;
  border-left: 4px solid #6B7280;
}

.problem-note p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}

.problem-note em {
  color: #EF4444;
  font-style: normal;
}

/* Consequences */
.consequences {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.consequence {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: #FEF2F2;
  border-radius: 8px;
  border: 1px solid #FECACA;
}

.cons-icon {
  font-size: 24px;
  color: #EF4444;
  flex-shrink: 0;
}

.cons-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #991B1B;
  margin-bottom: 3px;
}

/* Options grid */
.options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.option h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #1F2937;
  margin-bottom: 8px;
}

.option p {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

/* Delay reasons */
.delay-reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.reason {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #F3F4F6;
  border-radius: 8px;
}

.reason-icon {
  font-size: 24px;
  color: #6B7280;
  flex-shrink: 0;
}

.reason-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: 3px;
}

.reason-text p {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #9CA3AF;
  margin: 0;
}

/* Contact box */
.contact-box {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #E5E7EB;
}

.contact-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #1F2937;
  margin-bottom: 15px;
  text-align: center;
}

.contact-box p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #6B7280;
  text-align: center;
  margin-bottom: 30px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.contact-option:hover {
  background: #F0F4F8;
  border-color: #00205B;
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 32px;
  color: #00205B;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 5px;
}

.contact-hours {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
}

/* FAQ Fornyelse Section */
.faq-fornyelse-section {
  padding: 80px 0;
  background: white;
}

.faq-fornyelse-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-fornyelse-item {
  margin-bottom: 15px;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
}

.faq-fornyelse-question {
  width: 100%;
  padding: 25px 30px;
  background: #F8FAFC;
  border: none;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1F2937;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-fornyelse-question:hover {
  background: #F0F4F8;
}

.faq-text {
  flex-grow: 1;
}

.faq-toggle {
  font-size: 24px;
  color: #00205B;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-fornyelse-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-fornyelse-answer > * {
  padding: 0 30px 30px;
}

.faq-fornyelse-answer p,
.faq-fornyelse-answer ul {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq-fornyelse-answer ul {
  padding-left: 20px;
  margin-left: 20px;
}

.faq-fornyelse-answer li {
  margin-bottom: 10px;
}

.faq-fornyelse-answer strong {
  color: #00205B;
}

.faq-fornyelse-answer em {
  display: block;
  font-size: 14px;
  color: #6B7280;
  margin-top: 15px;
  font-style: italic;
}

/* Example box */
.example-box {
  background: #F0F9FF;
  border-radius: 12px;
  padding: 25px;
  margin: 20px 0;
  border: 1px solid #BAE6FD;
}

.example-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #00205B;
  margin-bottom: 15px;
}

/* Early renewal info */
.early-renewal-info {
  margin: 20px 0;
}

.renewal-option {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E5E7EB;
}

.renewal-option:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.renewal-option h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1F2937;
  margin-bottom: 10px;
}

.renewal-option p {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #374151;
  margin-bottom: 10px;
}

.renewal-note {
  margin-top: 20px;
  padding: 15px;
  background: #F3F4F6;
  border-radius: 8px;
  border-left: 4px solid #6B7280;
}

.renewal-note p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
}

/* Answer header */
.answer-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-top: 30px;
}

.answer-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.answer-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #00205B;
}

/* Abroad options */
.abroad-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 20px 0;
}

.abroad-option {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 25px;
  border: 1px solid #E5E7EB;
}

.abroad-option h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #00205B;
  margin-bottom: 15px;
}

.abroad-option ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abroad-option li {
  padding: 8px 0;
  border-bottom: 1px solid #E5E7EB;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #6B7280;
}

.abroad-option li:last-child {
  border-bottom: none;
}

.abroad-option li strong {
  color: #374151;
}

/* Digital renewal info */
.digital-renewal-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.info-card {
  background: #F8FAFC;
  border-radius: 12px;
  padding: 25px;
}

.info-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card:nth-child(1) h4 {
  color: #10B981;
}

.info-card:nth-child(1) h4:before {
  content: "✅";
}

.info-card:nth-child(2) h4 {
  color: #EF4444;
}

.info-card:nth-child(2) h4:before {
  content: "❌";
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-card li {
  padding: 10px 0;
  border-bottom: 1px solid #E5E7EB;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #374151;
}

.info-card li:last-child {
  border-bottom: none;
}

.digital-note {
  margin-top: 20px;
  padding: 15px;
  background: #EFF6FF;
  border-radius: 8px;
  border-left: 4px solid #3B82F6;
}

.digital-note p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #1E40AF;
  font-style: italic;
}

.digital-note em {
  color: #00205B;
  font-style: normal;
}

/* Fornyelse CTA Section */
.fornyelse-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #00205B 0%, #1E3A8A 100%);
  color: white;
}

.fornyelse-cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.fornyelse-cta-box h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
}

.fornyelse-cta-box p {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.fornyelse-cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-fornyelse-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 40px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 300px;
}

.cta-fornyelse-btn.primary {
  background: #DC2626;
  color: white;
}

.cta-fornyelse-btn.primary:hover {
  background: #B91C1C;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.3);
}

.cta-fornyelse-btn.secondary {
  background: #10B981;
  color: white;
}

.cta-fornyelse-btn.secondary:hover {
  background: #059669;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.cta-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.cta-text {
  flex-grow: 1;
  text-align: left;
}

.cta-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

.cta-sub {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  opacity: 0.9;
}

.cta-links {
  margin: 30px 0;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-links p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  opacity: 0.9;
}

.cta-links a {
  color: #FFD700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.cta-links a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cta-note {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-note p {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  opacity: 0.9;
}

.cta-note strong {
  color: #FFD700;
}

.cta-note a {
  color: #93C5FD;
  text-decoration: none;
}

.cta-note a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title-fornyelse {
    font-size: 36px;
  }
  
  .subtitle-fornyelse {
    font-size: 18px;
  }
  
  .fornyelse-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .fornyelse-stat {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 20px;
  }
  
  .fornyelse-timeline::before {
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: calc(100% - 60px);
  }
  
  .timeline-marker {
    align-self: center;
  }
  
  .options-grid,
  .senior-comparison,
  .problems-grid,
  .price-notes {
    grid-template-columns: 1fr;
  }
  
  .process-steps-senior {
    grid-template-columns: 1fr;
  }
  
  .senior-step {
    flex-direction: column;
    gap: 20px;
  }
  
  .step-number {
    align-self: flex-start;
  }
  
  .fornyelse-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-fornyelse-btn {
    width: 100%;
    max-width: 350px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .main-title-fornyelse {
    font-size: 30px;
  }
  
  .fornyelse-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-fornyelse-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-fornyelse-primary,
  .btn-fornyelse-secondary {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
  
  .toc-fornyelse-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .cta-fornyelse-btn {
    min-width: auto;
    width: 100%;
  }
}/* End custom CSS */