/* Opportunity Card Page Styles - Vishwanta Brand */

/* CSS Variables */
:root {
  --germany-primary: #ffcc00; /* Vishwanta Gold */
  --germany-secondary: #004080; /* Vishwanta Blue */
  --germany-accent: #0059b3; /* Bright Blue */
  --germany-dark: #002244; /* Dark Navy */
  --germany-light: #f8f9fa;
  --germany-border: #e0e6ed;
  --germany-shadow: rgba(255, 204, 0, 0.1);
  --germany-gradient: linear-gradient(135deg, #ffcc00 0%, #004080 100%);
  --germany-text: #002244;
  --germany-muted: #6c757d;
  --germany-success: #28a745;
  --germany-warning: #ffcc00;
  --germany-danger: #dc3545;
  --germany-info: #0059b3;
}

/* Fix Contact menu navigation */
.navbar li:last-child a {
  position: static !important;
  display: inline-block !important;
  cursor: pointer !important;
}

.navbar li:last-child {
  position: static !important;
}

.navbar li:last-child:hover {
  background-color: var(--germany-accent);
}

.opportunity-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Hero Section */
.opportunity-hero {
  background: var(--germany-gradient);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.opportunity-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,0.1) 75%, rgba(0,0,0,0.1));
  background-size: 20px 20px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.flag-icon {
  margin-bottom: 20px;
}

.flag-icon img {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.opportunity-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.opportunity-hero h1 i {
  color: #b8860b;
  margin-right: 15px;
}

.hero-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--germany-primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}

/* Main Content Layout */
.main-content {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Sidebar Styles */
.sidebar {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.sidebar h3 {
  color: #1a1a1a;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--germany-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Points Calculator */
.points-calculator {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: var(--germany-primary);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

/* Points Result */
.points-result {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 20px 0;
  border: 2px solid #e1e5e9;
}

.total-points {
  margin-bottom: 15px;
}

.points-label {
  display: block;
  font-weight: 600;
  color: #555;
  font-size: 1rem;
  margin-bottom: 5px;
}

.points-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--germany-primary);
  display: block;
}

.eligibility-status {
  font-weight: 600;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.eligibility-status.eligible {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.eligibility-status.not-eligible {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.eligibility-status.neutral {
  background: #e2e3e5;
  color: #383d41;
  border: 1px solid #d6d8db;
}

/* Apply Button */
.apply-btn {
  width: 100%;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  color: #1a1a1a;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

/* Quick Links */
.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links a {
  color: var(--germany-primary);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
}

.quick-links a:hover {
  background: #fff8dc;
  transform: translateX(5px);
}

/* Main Content */
.content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Info Sections */
.info-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e1e5e9;
}

.info-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.info-section h2 {
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-section h2 i {
  color: var(--germany-primary);
}

.info-content p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1rem;
}

/* Highlight Boxes */
.highlight-box, .update-box {
  padding: 25px;
  border-radius: 12px;
  margin: 20px 0;
}

.highlight-box {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border-left: 5px solid var(--germany-primary);
}

.update-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
  border-left: 5px solid #2196f3;
}

.highlight-box h4, .update-box h4 {
  color: #1a1a1a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box h4 i {
  color: var(--germany-primary);
}

.update-box h4 i {
  color: #2196f3;
}

.highlight-box ul {
  list-style: none;
  padding: 0;
}

.highlight-box li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #333;
}

.highlight-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--germany-primary);
  font-weight: bold;
}

/* Eligibility Grid */
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.eligibility-card {
  background: white;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.eligibility-card:hover {
  border-color: var(--germany-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card-icon {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  color: #1a1a1a;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.eligibility-card h4 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.eligibility-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.eligibility-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.eligibility-card li {
  padding: 5px 0;
  color: #555;
  position: relative;
  padding-left: 20px;
}

.eligibility-card li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--germany-primary);
  font-size: 12px;
}

/* Points Breakdown */
.points-breakdown {
  margin-top: 25px;
}

.points-category {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--germany-primary);
}

.points-category h4 {
  color: #1a1a1a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.points-category h4 i {
  color: var(--germany-primary);
}

.points-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.points-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e1e5e9;
}

.points-criteria {
  flex: 1;
  color: #555;
}

.points-earned {
  background: var(--germany-primary);
  color: #1a1a1a;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.benefit-card {
  background: white;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--germany-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  color: #1a1a1a;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.benefit-card h4 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
  margin-top: 25px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.timeline-number {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  color: #1a1a1a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.timeline-content h4 {
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Documents Checklist */
.documents-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.document-category {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid var(--germany-primary);
}

.document-category h4 {
  color: #1a1a1a;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.document-category h4 i {
  color: var(--germany-primary);
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 8px 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkmark {
  color: var(--germany-primary);
  font-weight: bold;
  flex-shrink: 0;
}

/* Success Stories */
.success-stories {
  margin-top: 40px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.story-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fffacd 100%);
  border: 2px solid var(--germany-primary);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.2);
}

.story-avatar {
  color: var(--germany-primary);
  font-size: 60px;
  margin-bottom: 15px;
}

.story-card h4 {
  color: #1a1a1a;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.story-role {
  color: #666;
  font-weight: 600;
  margin-bottom: 15px;
}

.story-card p:not(.story-role) {
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 15px;
}

.story-rating {
  color: var(--germany-primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 40px;
  border: 2px solid #e1e5e9;
}

.cta-section h2 {
  color: #1a1a1a;
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-section h2 i {
  color: var(--germany-primary);
}

.cta-section p {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-whatsapp {
  padding: 15px 25px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(212,175,55,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  color: white;
  background: var(--germany-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #b8860b;
  transform: scale(1.1);
}

.footer-copy {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-content {
    grid-template-columns: 340px 1fr;
    gap: 25px;
  }
  
  .opportunity-hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 968px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sidebar {
    position: static;
    order: 2;
  }
  
  .content {
    order: 1;
  }
  
  .eligibility-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .documents-checklist {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .opportunity-hero {
    padding: 60px 15px;
  }
  
  .opportunity-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .main-content {
    padding: 20px 15px;
  }
  
  .sidebar, .content {
    padding: 20px;
  }
  
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-whatsapp {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .opportunity-hero h1 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }
  
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .documents-checklist {
    grid-template-columns: 1fr;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section h2 {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 8px;
  }
  
  .btn-primary, .btn-whatsapp {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Bottleneck Occupations Styling */
.occupation-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 30px 0;
}

.occupation-group {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-left: 5px solid var(--germany-primary);
  transition: all 0.3s ease;
}

.occupation-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.occupation-group h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.occupation-group h3 i {
  color: var(--germany-primary);
  font-size: 1.2rem;
}

.occupation-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.occupation-subgroup {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.occupation-subgroup h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
}

.occupation-subgroup ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.occupation-subgroup li {
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 10px;
}

.occupation-subgroup li:last-child {
  border-bottom: none;
}

.code {
  background: var(--germany-primary);
  color: #1a1a1a;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  min-width: 50px;
  text-align: center;
}

.bottleneck-info {
  margin-top: 30px;
}

.info-box {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  padding: 25px;
  border-radius: 15px;
  color: #1a1a1a;
}

.info-box h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h4 i {
  font-size: 1.1rem;
}

.info-box p {
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* Improvement Tips Styling */
.improvement-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.tip-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.tip-card.special-tip {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff3cd 100%);
  border: 2px solid var(--germany-primary);
}

.tip-card.special-tip::before {
  height: 6px;
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
}

.tip-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-size: 1.5rem;
}

.tip-content h3 {
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
}

.tip-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tip-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.tip-content li {
  padding: 8px 0;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.tip-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--germany-primary);
  font-weight: bold;
}

.tip-highlight {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
}

.points-gain {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.95rem;
}

.language-resources {
  margin: 15px 0;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
}

.language-resources p {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.resource-tag {
  display: inline-block;
  background: var(--germany-primary);
  color: #1a1a1a;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 2px;
}

.improvement-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
  color: white;
}

.cta-content h3 {
  color: var(--germany-primary);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.cta-content p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, var(--germany-primary) 0%, var(--germany-primary) 100%);
  color: #1a1a1a;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}
