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

:root {
  --primary: #1a5276;
  --secondary: #e74c3c;
  --accent: #2980b9;
  --light: #f8f9fa;
  --dark: #2c3e50;
  --success: #27ae60;
  --timeline: #3498db;
}

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

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

header {
  background: var(--primary);
  color: white;
  padding: 3rem 0;
  text-align: center;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: cover;
}

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  line-height: 1.8;
}

.section {
  background: white;
  margin: 2.5rem 0;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 0 18px 18px 0;
}

.section:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

h2 {
  color: var(--primary);
  border-right: 6px solid var(--secondary);
  padding-right: 20px;
  margin-bottom: 2rem;
  font-size: 2rem;
  position: relative;
}

h3 {
  color: var(--accent);
  margin: 2rem 0 1.2rem 0;
  font-size: 1.5rem;
  position: relative;
  padding-right: 15px;
}

h3::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.timeline {
  position: relative;
  margin: 3rem 0;
  padding-right: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--timeline);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-right: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  right: -2.3rem;
  top: 0.5rem;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 3px var(--timeline);
}

.timeline-year {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.timeline-content {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  border-right: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(-10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

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

.stat-card {
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.stat-card:hover::before {
  transform: rotate(45deg) translate(20px, 20px);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: var(--secondary);
  position: relative;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  position: relative;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin: 2.5rem 0;
}

.factor-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-top: 5px solid var(--accent);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.factor-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 30px 30px;
  border-color: transparent transparent var(--light) transparent;
}

.factor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.factor-icon {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
  color: var(--primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

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

th {
  background: linear-gradient(to right, var(--primary), #2c3e50);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

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

tr:hover {
  background: #e8f4fc;
  transition: background 0.3s ease;
}

.future-outlook {
  background: linear-gradient(135deg, #e8f4fc 0%, #f0f8ff 100%);
  padding: 2.5rem;
  border-radius: 15px;
  border-right: 6px solid var(--accent);
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.future-outlook::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(41, 128, 185, 0.1)"/></svg>');
  background-size: cover;
}

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

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 8s infinite linear;
}

@keyframes pulse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-size: 2.3rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-button {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 2rem;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--light);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e8f4fc;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 2rem 1.5rem;
  }

  .timeline {
    padding-right: 1.5rem;
  }

  .timeline-item {
    padding-right: 2rem;
  }
}
