* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2d6a4f;
  --primary-light: #52b788;
  --primary-dark: #1b4332;
  --accent: #f4a261;
  --accent-dark: #e76f51;
  --bg-light: #f8f9f4;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d3d;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-main: 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-main);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-light);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all 0.2s;
}

nav a:hover,
nav a.active {
  background: var(--primary);
  color: white;
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

.hero {
  background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 40%, #52b788 100%);
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
              radial-gradient(circle at 70% 20%, rgba(244,162,97,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 36px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px rgba(244,162,97,0.4);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,162,97,0.5);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-white);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.featured-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.4s;
}

.featured-main:hover img {
  transform: scale(1.03);
}

.featured-main-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 40px 28px 28px;
  color: white;
}

.featured-main-overlay h3 {
  font-family: var(--font-main);
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.featured-main-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-card {
  display: flex;
  gap: 16px;
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
}

.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.article-card img {
  width: 130px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.article-card-body {
  padding: 14px 16px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.article-card-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 6px;
}

.article-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.content-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-section.reverse {
  direction: rtl;
}

.content-section.reverse > * {
  direction: ltr;
}

.content-text h2 {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.content-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-text p:last-of-type {
  margin-bottom: 24px;
}

.content-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.content-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.4s;
}

.content-img:hover img {
  transform: scale(1.03);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tip-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-light);
  transition: all 0.3s;
}

.tip-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.tip-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

.full-img-section {
  position: relative;
  overflow: hidden;
}

.full-img-section img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.full-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.85) 0%, rgba(45,106,79,0.6) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.full-img-content {
  padding: 60px;
  max-width: 560px;
  color: white;
}

.full-img-content h2 {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.full-img-content p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 28px;
}

.newsletter {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 70px 24px;
  text-align: center;
}

.newsletter h2 {
  font-family: var(--font-main);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.newsletter p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  outline: none;
  color: var(--text-dark);
}

.newsletter-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.newsletter-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.75;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 70px 24px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px;
}

.page-content h2 {
  font-family: var(--font-main);
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin: 24px 0 10px;
}

.page-content p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.page-img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 36px 0;
  box-shadow: var(--shadow);
}

.page-img-block img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.page-img-caption {
  background: var(--bg-light);
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.team-card-body {
  padding: 18px;
}

.team-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.team-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.highlight-box {
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box p {
  color: var(--primary-dark);
  font-weight: 500;
  margin: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}

.stat-item {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-main);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
}

.breadcrumb {
  background: var(--bg-white);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.85rem;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--primary);
}

.breadcrumb-inner span {
  margin: 0 8px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .content-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-section.reverse {
    direction: ltr;
  }
  .tips-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .full-img-content {
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .tips-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 70px 20px;
  }
  .full-img-section img {
    height: 360px;
  }
}
