:root {
  --navy: #0a1e3c;
  --navy-light: #1c3556;
  --orange: #ff7b00;
  --orange-light: #ff9a40;
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --dark-gray: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  color: var(--dark-gray);
  line-height: 1.6;
}

a {
  color: var(--orange);
  font-weight: bold;
}

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

header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--orange);
}

.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--navy);
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  flex: 1 1 250px;
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  max-width: 350px;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: var(--navy);
  margin-bottom: 15px;
  font-size: 22px;
}

.steps-container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.step-number {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 20px;
  flex-shrink: 0;
}

.step-content {
  flex-grow: 1;
}

.step-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--navy);
}

.cta-section {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-btn {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--white);
}

.cta-btn:hover {
  background: transparent;
  color: var(--white);
}

.faq-section {
  background: var(--light-gray);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--navy);
}

footer {
  background: var(--navy);
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-logo span {
  color: var(--orange);
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--white);
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--orange-light);
}

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

.image-placeholder {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
}

/* Responzivní design */
@media (max-width: 768px) {
  .hero h1 {
      font-size: 32px;
  }
  
  .hero p {
      font-size: 18px;
  }
  
  .section-title {
      font-size: 28px;
  }
  
  .benefit-card {
      flex: 1 1 100%;
  }
  
  .step {
      flex-direction: column;
  }
  
  .step-number {
      margin-bottom: 15px;
      margin-right: 0;
  }
}
