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

:root {
  --primary: #2c3e50;
  --secondary: #e67e22;
  --accent: #3498db;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --success: #27ae60;
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: var(--dark);
  line-height: 1.6;
}

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

header {
  background: var(--primary);
  color: white;
  padding: 2rem 0;
  text-align: center;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto;
}

.section {
  background: white;
  margin: 2rem 0;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.section:hover {
  transform: translateY(-5px);
}

h2 {
  color: var(--primary);
  border-right: 5px solid var(--secondary);
  padding-right: 15px;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

h3 {
  color: var(--accent);
  margin: 1.5rem 0 1rem 0;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.step-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 10px;
  border-top: 4px solid var(--secondary);
  transition: all 0.3s ease;
}

.step-card:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: var(--secondary);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.advantages-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.advantage-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.advantage-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

th,
td {
  padding: 1rem;
  text-align: right;
  border-bottom: 1px solid #eee;
}

th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

tr:nth-child(even) {
  background: #f9f9f9;
}

tr:hover {
  background: #f1f8ff;
}

.comparison-table {
  margin: 2rem 0;
}

.highlight {
  background: #e8f4fc;
  padding: 2rem;
  border-radius: 10px;
  border-right: 5px solid var(--accent);
  margin: 2rem 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2530 100%);
  color: white;
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 15px;
  margin: 3rem 0;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--dark);
  opacity: 0.8;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .steps-container,
  .advantages-container {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 1.5rem;
  }
}
