* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #ee693f;
  --secondary-orange: #f69454;
  --background-white: #fcfdfe;
  --accent-green: #739f3d;
  --text-dark: #2c2c2c;
  --text-light: #666;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

.header {
  background-color: var(--background-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.header__logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-orange);
  text-decoration: none;
}

.header__nav {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header__nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 0;
}

.header__nav-link:hover {
  color: var(--primary-orange);
}

.hero {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero__title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero__cta {
  display: inline-block;
  background-color: var(--accent-green);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.hero__cta:hover {
  background-color: #5d7a30;
}

.section {
  padding: 80px 0;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section__title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section__subtitle {
  font-size: 18px;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.success {
  background-color: var(--background-white);
}

.success__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.success__item {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.success__number {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.success__label {
  font-size: 16px;
  color: var(--text-light);
}

.about {
  background-color: #f8f9fa;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.about__text p {
  margin-bottom: 20px;
}

.about__image {
  text-align: center;
}

.about__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services {
  background-color: var(--background-white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.services__card {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.services__card:hover {
  transform: translateY(-5px);
}

.services__icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.services__card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.services__card-text {
  color: var(--text-light);
  line-height: 1.6;
}

.why-choose {
  background-color: #f8f9fa;
}

.why-choose__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-choose__item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-green);
}

.why-choose__item-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-choose__item-text {
  color: var(--text-light);
  line-height: 1.6;
}

.how-work {
  background-color: var(--background-white);
}

.how-work__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.how-work__step {
  text-align: center;
  position: relative;
}

.how-work__step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.how-work__step-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.how-work__step-text {
  color: var(--text-light);
  line-height: 1.6;
}

.testimonials {
  background-color: #f8f9fa;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonials__card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials__text {
  font-style: italic;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonials__author {
  font-weight: bold;
  color: var(--text-dark);
}

.testimonials__rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer__section-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--primary-orange);
}

.footer__contact p {
  margin-bottom: 10px;
  color: #ccc;
}

.footer__bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

.header__burger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.header__burger-line {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header__burger--active .header__burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
  background-color: var(--primary-orange);
}

.header__burger--active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger--active .header__burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
  background-color: var(--primary-orange);
}

.header__nav--mobile {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: var(--background-white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 50px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__nav--mobile.header__nav--open {
  transform: translateX(0);
}

.header__nav--mobile .header__nav-link {
  font-size: 20px;
  padding: 15px 30px;
  margin: 10px 0;
  width: 80%;
  text-align: center;
  border-bottom: 1px solid #eee;
  display: block;
  transition: all 0.3s ease;
}

.header__nav--mobile .header__nav-link:hover {
  background-color: var(--primary-orange);
  color: white;
  border-radius: 5px;
}

@media (min-width: 769px) {
  .header__burger {
    display: none;
  }

  .header__nav--mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero__title {
    font-size: 36px;
  }

  .section__title {
    font-size: 28px;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section {
    padding: 60px 0;
  }
}
.history {
  background-color: var(--background-white);
  position: relative;
}

.history__timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.history__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--primary-orange),
    var(--accent-green)
  );
  transform: translateX(-50%);
}

.history__item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.history__item:nth-child(odd) {
  flex-direction: row;
}

.history__item:nth-child(even) {
  flex-direction: row-reverse;
}

.history__content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 45%;
  position: relative;
}

.history__year {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--primary-orange);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 2;
  border: 4px solid var(--background-white);
}

.history__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.history__text {
  color: var(--text-light);
  line-height: 1.7;
}

/* Team Section */
.team {
  background-color: #f8f9fa;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team__member {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.team__member:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(238, 105, 63, 0.2);
}

.team__avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 50%;
  margin: 30px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: white;
  font-weight: bold;
}

.team__ {
  padding: 0 30px 30px;
}

.team__name {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.team__role {
  font-size: 16px;
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.team__bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team__specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.team__specialty {
  background-color: var(--accent-green);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* Philosophy Section */
.philosophy {
  background-color: var(--background-white);
  position: relative;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  align-items: start;
}

.philosophy__category {
  text-align: center;
}

.philosophy__icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--primary-orange)
  );
  border-radius: 20px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  transform: rotate(5deg);
  transition: transform 0.3s ease;
}

.philosophy__category:hover .philosophy__icon {
  transform: rotate(0deg) scale(1.1);
}

.philosophy__category-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.philosophy__values {
  list-style: none;
  text-align: left;
}

.philosophy__value {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.philosophy__value::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 28px;
  }

  .history__timeline::before {
    left: 20px;
  }

  .history__item {
    flex-direction: column !important;
    margin-left: 40px;
  }

  .history__content {
    width: 100%;
  }

  .history__year {
    left: -60px;
    width: 60px;
    height: 60px;
    font-size: 14px;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.programs {
  background-color: var(--background-white);
}

.programs__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 10px;
}

.programs__tab {
  padding: 12px 25px;
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--text-light);
}

.programs__tab:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.programs__tab--active {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
}

.programs__content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.programs__content--active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.programs__course {
  background-color: white;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--accent-green);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.programs__course::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-orange), transparent);
  border-radius: 0 15px 0 100px;
  opacity: 0.1;
}

.programs__course:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(238, 105, 63, 0.2);
  border-left-color: var(--primary-orange);
}

.programs__course-level {
  background-color: var(--accent-green);
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
}

.programs__course-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.programs__course-duration {
  color: var(--primary-orange);
  font-weight: 600;
  margin-bottom: 15px;
}

.programs__course-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.programs__course-features {
  list-style: none;
}

.programs__course-feature {
  padding: 5px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 20px;
}

.programs__course-feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

/* Pricing Section */
.pricing {
  background-color: #f8f9fa;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing__card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing__card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-orange);
}

.pricing__card--featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.pricing__card--featured::before {
  content: "POPULAIR";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.pricing__plan-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.pricing__plan-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 14px;
}

.pricing__price {
  font-size: 48px;
  font-weight: bold;
  color: var(--primary-orange);
  margin-bottom: 5px;
}

.pricing__price-currency {
  font-size: 24px;
}

.pricing__price-period {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 30px;
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.pricing__feature {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.pricing__feature::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.pricing__feature--unavailable {
  opacity: 0.5;
  text-decoration: line-through;
}

.pricing__feature--unavailable::before {
  content: "✕";
  color: #ccc;
}

.pricing__button {
  background-color: var(--primary-orange);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 16px;
}

.pricing__button:hover {
  background-color: #d55a35;
  transform: translateY(-2px);
}

.pricing__card--featured .pricing__button {
  background-color: var(--accent-green);
}

.pricing__card--featured .pricing__button:hover {
  background-color: #5d7a30;
}

/* Additional Services Section */
.additional {
  background-color: var(--background-white);
}

.additional__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.additional__category {
  background-color: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
}

.additional__category-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.additional__category-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--primary-orange)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-right: 20px;
}

.additional__category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-dark);
}

.additional__services {
  list-style: none;
}

.additional__service {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.additional__service:hover {
  background-color: #f8f9fa;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
}

.additional__service:last-child {
  border-bottom: none;
}

.additional__service- {
  flex: 1;
}

.additional__service-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.additional__service-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.additional__service-price {
  font-weight: bold;
  color: var(--primary-orange);
  font-size: 16px;
  margin-left: 20px;
}

.additional__service-duration {
  font-size: 12px;
  color: var(--text-light);
  margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 28px;
  }

  .programs__tabs {
    flex-direction: column;
    align-items: center;
  }

  .programs__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing__card--featured {
    transform: none;
  }

  .additional__categories {
    grid-template-columns: 1fr;
  }

  .additional__service {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .additional__service-price {
    margin-left: 0;
  }
}
.latest {
  background-color: var(--background-white);
}

.latest__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.latest__main-article {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.latest__main-article:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(238, 105, 63, 0.2);
}

.latest__main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.latest__main-article:hover .latest__main-image {
  transform: scale(1.05);
}

.latest__main-content {
  padding: 30px;
}

.latest__main-category {
  background-color: var(--primary-orange);
  color: white;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 15px;
}

.latest__main-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
  line-height: 1.3;
}

.latest__main-excerpt {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.latest__main-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-light);
}

.latest__main-author {
  font-weight: 600;
  color: var(--accent-green);
}

.latest__secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.latest__secondary-article {
  background-color: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.latest__secondary-article:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 30px rgba(115, 159, 61, 0.15);
}

.latest__secondary-image {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.latest__secondary-content {
  flex: 1;
}

.latest__secondary-category {
  background-color: var(--accent-green);
  color: white;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 10px;
}

.latest__secondary-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--text-dark);
  line-height: 1.3;
}

.latest__secondary-excerpt {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.latest__secondary-date {
  font-size: 12px;
  color: var(--text-light);
}

.latest__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.latest__article {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.latest__article:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(238, 105, 63, 0.15);
}

.latest__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.latest__article-content {
  padding: 25px;
}

.latest__article-category {
  background-color: var(--secondary-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 12px;
}

.latest__article-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.3;
}

.latest__article-excerpt {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.latest__article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
}

/* Categories Section */
.categories {
  background-color: #f8f9fa;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.categories__item {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.categories__item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(238, 105, 63, 0.05),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.categories__item:hover::before {
  opacity: 1;
  top: -60%;
  left: -60%;
}

.categories__item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 45px rgba(238, 105, 63, 0.2);
}

.categories__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  border-radius: 20px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  position: relative;
  z-index: 2;
}

.categories__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

.categories__description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.categories__count {
  background-color: var(--accent-green);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.categories__featured-articles {
  margin-top: 30px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.categories__featured-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.categories__featured-list {
  list-style: none;
}

.categories__featured-item {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.categories__featured-item:hover {
  color: var(--primary-orange);
}

.categories__featured-item:last-child {
  border-bottom: none;
}

/* Archive Section */
.archive {
  background-color: var(--background-white);
}

.archive__filters {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
  flex-wrap: wrap;
}

.archive__filter {
  padding: 10px 20px;
  background-color: white;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: var(--text-light);
  font-size: 14px;
}

.archive__filter:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.archive__filter--active {
  background-color: var(--primary-orange);
  border-color: var(--primary-orange);
  color: white;
}

.archive__timeline {
  max-width: 800px;
  margin: 0 auto;
}

.archive__year {
  margin-bottom: 50px;
}

.archive__year-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-orange);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.archive__year-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-green);
  border-radius: 2px;
}

.archive__months {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.archive__month {
  background-color: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.archive__month:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(115, 159, 61, 0.15);
}

.archive__month-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.archive__month-count {
  background-color: var(--accent-green);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.archive__articles {
  list-style: none;
}

.archive__article {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.archive__article:hover {
  background-color: #f8f9fa;
  margin: 0 -15px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 8px;
}

.archive__article:last-child {
  border-bottom: none;
}

.archive__article-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-size: 14px;
}

.archive__article-date {
  font-size: 12px;
  color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 28px;
  }

  .latest__featured {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .latest__secondary-article {
    flex-direction: column;
    text-align: center;
  }

  .latest__secondary-image {
    width: 100%;
    height: 150px;
  }

  .latest__grid {
    grid-template-columns: 1fr;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .archive__filters {
    flex-direction: column;
    align-items: center;
  }

  .archive__months {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  background-color: var(--background-white);
}

.contact-form__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form__form-wrapper {
  background-color: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form__form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-orange),
    var(--accent-green)
  );
}

.contact-form__title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-form__description {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__group {
  position: relative;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--text-light);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: white;
  padding: 0 5px;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 16px;
  color: var(--text-dark);
  background-color: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(238, 105, 63, 0.1);
}

.contact-form__input:focus + .contact-form__label,
.contact-form__input:not(:placeholder-shown) + .contact-form__label,
.contact-form__textarea:focus + .contact-form__label,
.contact-form__textarea:not(:placeholder-shown) + .contact-form__label,
.contact-form__select:focus + .contact-form__label,
.contact-form__select:not([value=""]) + .contact-form__label {
  top: -8px;
  left: 15px;
  font-size: 12px;
  color: var(--primary-orange);
  font-weight: 600;
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__select {
  cursor: pointer;
}

.contact-form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.contact-form__checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.contact-form__checkbox input:checked + .contact-form__checkbox-checkmark {
  opacity: 1;
}

.contact-form__checkbox input:checked ~ .contact-form__checkbox {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
}

.contact-form__checkbox-checkmark {
  position: absolute;
  top: 2px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-form__checkbox-label {
  color: var(--text-light);
  font-size: 14px;
  cursor: pointer;
  line-height: 1.4;
}

.contact-form__checkbox-label a {
  color: var(--primary-orange);
  text-decoration: none;
}

.contact-form__checkbox-label a:hover {
  text-decoration: underline;
}

.contact-form__submit {
  background: linear-gradient(
    135deg,
    var(--primary-orange),
    var(--secondary-orange)
  );
  color: white;
  padding: 18px 40px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(238, 105, 63, 0.3);
}

.contact-form__submit:active {
  transform: translateY(0);
}

.contact-form__submit--loading {
  pointer-events: none;
}

.contact-form__submit--loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Contact Info Section */
.contact-info {
  background-color: #f8f9fa;
}

.contact-info__content {
  background-color: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--primary-orange)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.contact-info__details h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-info__details p {
  color: var(--text-light);
  line-height: 1.5;
}

.contact-info__details a {
  color: var(--primary-orange);
  text-decoration: none;
}

.contact-info__details a:hover {
  text-decoration: underline;
}

/* Business Hours Section */
.business-hours {
  background-color: var(--background-white);
}

.business-hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.business-hours__schedule {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.business-hours__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-dark);
  text-align: center;
}

.business-hours__days {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.business-hours__day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.business-hours__day:hover {
  background-color: var(--primary-orange);
  color: white;
  transform: translateX(5px);
}

.business-hours__day-name {
  font-weight: 600;
}

.business-hours__day-time {
  color: var(--text-light);
}

.business-hours__day:hover .business-hours__day-time {
  color: rgba(255, 255, 255, 0.9);
}

.business-hours__location {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.business-hours__location-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
  text-align: center;
}

.business-hours__address {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 25px;
}

.business-hours__address h4 {
  font-size: 18px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.business-hours__address p {
  color: var(--text-light);
  line-height: 1.6;
}

.business-hours__directions {
  background: linear-gradient(
    135deg,
    var(--accent-green),
    var(--primary-orange)
  );
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 16px;
}

.business-hours__directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(115, 159, 61, 0.3);
}

.notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--success-green), #66bb6a);
  color: #5d7a30;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.3);
  z-index: 1000;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification--show {
  transform: translateX(0);
  opacity: 1;
}

.notification__content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.notification__icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.notification__text {
  flex: 1;
}

.notification__title {
  font-weight: bold;
  margin-bottom: 5px;
}

.notification__message {
  font-size: 14px;
  opacity: 0.9;
}

.notification__close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.notification__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Form Validation Styles */
.contact-form__input--error,
.contact-form__textarea--error,
.contact-form__select--error {
  border-color: var(--error-red);
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.contact-form__error-message {
  color: var(--error-red);
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.contact-form__error-message--show {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section__title {
    font-size: 28px;
  }

  .contact-form__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form__form-wrapper,
  .contact-info__content,
  .business-hours__schedule,
  .business-hours__location {
    padding: 30px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .business-hours__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .notification {
    top: 20px;
    right: 20px;
    left: 20px;
    transform: translateY(-100px);
  }

  .notification--show {
    transform: translateY(0);
  }
}
