:root {
  --primary: #1a4b8c;
  --secondary: #f9a51a;
  --accent: #e63946;
  --white: #ffffff;
  --light: #f8f9fa;
  --dark: #2d3436;
  --success: #2ecc71;
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.about-container {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeIn 1.5s ease-in-out forwards;
  opacity: 0;
}

.hero-text {
  flex: 1;
  padding: 20px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: var(--primary);
}

.highlight {
  color: var(--secondary);
}

.hero-text p {
  margin: 20px 0;
  font-size: 1.1rem;
}

.cta-button {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
}

.cta-button:hover {
  background: var(--accent);
  color: var(--white);
}

.hero-img {
  flex: 1;
  text-align: center;
  padding: 20px;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1.2s ease forwards 0.5s;
}

.hero-img img {
  width: 250px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.about-content {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1.2s ease forwards 1s;
}

.about-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 800px;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-img img {
    width: 180px;
  }
}
