/* NewsOfLife - Complete Stylesheet (Minified) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  color: #1a202c;
  background: #ffffff;
  font-weight: 400;
  letter-spacing: 0.3px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.25rem;
  font-weight: 800;
}
h2 {
  font-size: 1.875rem;
  font-weight: 700;
}
h3 {
  font-size: 1.375rem;
  font-weight: 700;
}
p {
  margin-bottom: 1.125rem;
  color: #374151;
  font-weight: 500;
  line-height: 1.7;
}
a {
  color: #0d9488;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}
a:hover {
  color: #0f766e;
  text-decoration: underline;
}
header {
  background: #0f172a;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 1rem;
}
nav a:hover {
  color: #0d9488;
}
.lang-switcher {
  display: flex;
  gap: 0.5rem;
}
.lang-btn {
  background: transparent;
  border: 1.5px solid #cbd5e1;
  color: #cbd5e1;
  padding: 0.625rem 1.125rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 600;
}
.lang-btn.active {
  background: #0d9488;
  border-color: #0d9488;
  color: #fff;
  font-weight: 700;
}
.lang-btn:hover {
  border-color: #0d9488;
  color: #0d9488;
}
main {
  min-height: calc(100vh - 200px);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #e2e8f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.7;
}
.why-choose-us {
  padding: 5rem 1rem;
  background: #f9fafb;
}
.why-choose-us h2 {
  text-align: center;
  margin-bottom: 3.5rem;
  color: #0f172a;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 3px solid #0d9488;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.card h3 {
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}
.card p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
}
.popular-courses {
  padding: 5rem 1rem;
  background: #ffffff;
}
.popular-courses h2 {
  text-align: center;
  margin-bottom: 3.5rem;
  color: #0f172a;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.course-card {
  background: #f9fafb;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 5px solid #0d9488;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.course-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  transform: translateY(-4px);
}
.course-card h3 {
  color: #0f172a;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.course-card p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.course-card .level {
  color: #0d9488;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.course-card .duration {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 1.5rem 0;
  font-weight: 500;
}
.course-card ul {
  margin: 1.25rem 0;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.8;
}
.course-card ul li {
  margin-bottom: 0.5rem;
}
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background: #0d9488;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}
.btn:active {
  transform: translateY(0);
}
.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.95rem;
}
.btn-secondary {
  background: #0f172a;
  color: #fff;
}
.btn-secondary:hover {
  background: #1e293b;
}
footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3.5rem 0;
  margin-top: 5rem;
  border-top: 1px solid #1e293b;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h3 {
  color: #f1f5f9;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-section p {
  color: #cbd5e1;
  font-size: 0.95rem;
}
.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  display: block;
  margin: 0.75rem 0;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 0.95rem;
}
.footer-section a:hover {
  color: #0d9488;
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #cbd5e1;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #1e293b;
  border-radius: 50%;
  text-decoration: none;
  color: #cbd5e1;
  transition: background 0.3s, color 0.3s;
  font-weight: 700;
}
.social-links a:hover {
  background: #0d9488;
  color: #fff;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  header {
    padding: 1rem 0;
  }
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  .logo {
    width: 100%;
    text-align: center;
  }
  .cards-grid,
  .courses-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  h1 {
    font-size: 1.875rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
