:root {
  --primary: #2a6dc9;
  --secondary: #34c759;
  --accent: #ff9500;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
}

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

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.template-header {
  background: linear-gradient(135deg, var(--primary), #1a4d8c);
  color: white;
  padding: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-icon {
  font-size: 3rem;
  margin-right: 1rem;
  color: var(--secondary);
  transition: transform 0.5s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.2) rotate(15deg);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Tahoma", Arial, sans-serif !important;
}


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

.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 2rem;
}

section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.section-title h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary);
}

.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.1);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}

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

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

tr {
  transition: background-color 0.3s ease;
}

tr:hover {
  background-color: rgba(52, 199, 89, 0.05);
}

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

.mission-statement {
  background: linear-gradient(135deg, var(--primary), #1a4d8c);
  color: white;
  padding: 3rem;
  border-radius: 10px;
  margin: 2rem 0;
  text-align: center;
  box-shadow: 0 10px 25px rgba(42, 109, 201, 0.3);
}

.mission-statement h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission-statement p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.value-item {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: scale(1.05);
}

.value-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.approach-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 10px;
  transition: background 0.3s ease;
}

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

.step-number {
  background-color: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.approach-step:hover .step-number {
  background-color: var(--secondary);
}

.step-content {
  flex: 1;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-size: 1rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: var(--secondary);
  transform: translateY(-5px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 768px) {
  .approach-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    align-self: center;
  }
}
