/* Base Styles
   ========================================================================== */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #198754;
  --dark-color: #343a40;
  --light-color: #f8f9fa;
  --gray-color: #e9ecef;
  --white-color: #ffffff;
  --black-color: #212529;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --border-radius: 4px;
  --transition: all 0.3s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--black-color);
  background-color: var(--white-color);
}

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

a:hover {
  color: #0a58ca;
}

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

ul {
  list-style: none;
}

/* Utility Classes
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background-color: var(--gray-color);
}

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

.section__title {
  margin-bottom: 40px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--black-color);
}

.section--primary .section__title {
  color: var(--white-color);
}

.section__subtitle {
  margin-bottom: 50px;
  font-size: 1.2rem;
  text-align: center;
  color: #6c757d;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

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

.btn--primary:hover {
  background-color: #0a58ca;
  color: var(--white-color);
}

.btn--secondary {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.btn--secondary:hover {
  background-color: #157347;
  color: var(--white-color);
}

.btn--light {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.btn--light:hover {
  background-color: #e6e6e6;
  color: var(--primary-color);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.2rem;
}

.btn--full {
  display: block;
  width: 100%;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* Header
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-color);
}

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

.logo__img {
  height: 40px;
  margin-right: 10px;
}

.logo__text {
  font-size: 1.5rem;
}

.nav__list {
  display: flex;
}

.nav__item {
  margin-left: 30px;
}

.nav__link {
  font-weight: 500;
  color: var(--black-color);
}

.nav__link:hover, .nav__link--active {
  color: var(--primary-color);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--black-color);
  transition: var(--transition);
}

/* Banner
   ========================================================================== */
.banner {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  color: var(--white-color);
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  background-image: url('../assets/banner-bg.svg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.banner__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.banner__title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.banner__subtitle {
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.banner__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Services Section
   ========================================================================== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
}

.service-card {
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card__icon {
  margin-bottom: 20px;
}

.service-card__img {
  height: 60px;
}

.service-card__title {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.service-card__text {
  color: #6c757d;
}

.service-card__link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 500;
}

/* About Section
   ========================================================================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about__text {
  margin-bottom: 20px;
}

.about__list {
  margin-top: 30px;
}

.about__item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.about__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.about__image {
  text-align: center;
}

.about__img {
  max-height: 400px;
}

/* Features Section
   ========================================================================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.feature {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature__title {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.feature__text {
  color: #6c757d;
}

/* Testimonials Section
   ========================================================================== */
.testimonials__slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  padding: 30px;
  margin: 0 auto;
  max-width: 800px;
}

.testimonial__content {
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.testimonial__text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial__author {
  margin-top: 20px;
}

.testimonial__name {
  font-weight: 700;
  margin-bottom: 5px;
}

.testimonial__location {
  font-size: 0.9rem;
  color: #6c757d;
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.testimonials__button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: var(--white-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials__button:hover {
  background-color: var(--primary-color);
}

.testimonials__button--prev::before,
.testimonials__button--next::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--black-color);
  border-right: 2px solid var(--black-color);
}

.testimonials__button--prev::before {
  transform: rotate(-135deg);
}

.testimonials__button--next::before {
  transform: rotate(45deg);
}

.testimonials__button:hover::before {
  border-color: var(--white-color);
}

/* Latest Articles Section
   ========================================================================== */
.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.articles__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-card__image {
  height: 200px;
  overflow: hidden;
}

.article-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.article-card__content {
  padding: 20px;
}

.article-card__title {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.article-card__text {
  margin-bottom: 15px;
  color: #6c757d;
}

.article-card__meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #6c757d;
}

.article-card__date {
  margin-right: 15px;
}

.article-card__link {
  font-weight: 500;
}

.articles__more {
  margin-top: 40px;
  text-align: center;
}

/* Newsletter Section
   ========================================================================== */
.newsletter__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.newsletter__content {
  flex: 1;
}

.newsletter__title {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.newsletter__text {
  font-size: 1.1rem;
}

.newsletter__form {
  flex: 1;
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ced4da;
  border-radius: var(--border-radius);
  font-size: 1rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* CTA Section
   ========================================================================== */
.cta__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta__title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.cta__text {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

/* Footer
   ========================================================================== */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 80px 0 20px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  margin-bottom: 40px;
}

.footer__info {
  margin-bottom: 30px;
}

.logo--footer {
  margin-bottom: 20px;
}

.footer__text {
  margin-bottom: 20px;
}

.footer__address p {
  margin-bottom: 5px;
}

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

.footer__heading {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.footer__item {
  margin-bottom: 10px;
}

.footer__link {
  color: #adb5bd;
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--white-color);
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copyright {
  color: #adb5bd;
  font-size: 0.9rem;
}

.social {
  display: flex;
  gap: 15px;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  transition: var(--transition);
}

.social__link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.social__icon {
  width: 20px;
  height: 20px;
}

/* Page Header
   ========================================================================== */
.page-header {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white-color);
  text-align: center;
}

.page-header__title {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
}

.page-header__subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info__title {
  margin-bottom: 30px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.contact-info__item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: rgba(13, 110, 253, 0.1);
  color: var(--primary-color);
}

.contact-info__heading {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-info__text {
  color: #6c757d;
}

.contact-info__social {
  margin-top: 40px;
}

.contact-form__title {
  margin-bottom: 30px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-check {
  display: flex;
  align-items: center;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  font-size: 0.9rem;
}

/* Map Section
   ========================================================================== */
.map-container {
  width: 100%;
  height: 400px;
  background-color: #e9ecef;
}

.map-placeholder {
  width: 100%;
  height: 100%;
}

.map-svg {
  width: 100%;
  height: 100%;
}

/* FAQ Section
   ========================================================================== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion__item {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  background-color: var(--white-color);
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.accordion__header:hover {
  background-color: #f8f9fa;
}

.accordion__title {
  flex: 1;
}

.accordion__icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.accordion__icon::before,
.accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background-color: var(--black-color);
  transition: var(--transition);
}

.accordion__icon::before {
  transform: translate(-50%, -50%);
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item.active .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion__content {
  display: none;
  padding: 0 20px 20px;
  background-color: var(--white-color);
}

.accordion__item.active .accordion__content {
  display: block;
}

/* Thank You Section
   ========================================================================== */
.thank-you__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.thank-you__icon {
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.thank-you__title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.thank-you__text {
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.thank-you__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Related Services
   ========================================================================== */
.services__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

/* Blog
   ========================================================================== */
.featured-article__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

.featured-article__image {
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.featured-article__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article__tag {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 15px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
}

.featured-article__title {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.featured-article__excerpt {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.featured-article__meta {
  display: flex;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #6c757d;
}

.featured-article__date {
  margin-right: 15px;
}

.topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.topic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}

.topic-card__icon {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.topic-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Article Page
   ========================================================================== */
.article-header {
  padding: 50px 0;
  background-color: var(--white-color);
}

.article-header__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  color: var(--black-color);
  font-weight: 500;
}

.article-header__back svg {
  margin-right: 10px;
}

.article-header__title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: #6c757d;
}

.article__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.article__image {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.article__img {
  width: 100%;
  height: auto;
}

.article__intro {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.article__content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.article__content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.article__content p {
  margin-bottom: 20px;
}

.article__content ul, .article__content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article__content li {
  margin-bottom: 10px;
}

.article__content ul {
  list-style: disc;
}

.article__content ol {
  list-style: decimal;
}

.article__alert {
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.article__alert--warning {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
}

.article__alert h4 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.sidebar-box {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-box--highlight {
  background-color: #e6f2ff;
}

.sidebar-box__title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.sidebar-box__text {
  margin-bottom: 20px;
}

.sidebar-box__list {
  list-style: none;
}

.sidebar-box__item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-box__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-box__link {
  color: var(--black-color);
  font-weight: 500;
  transition: var(--transition);
}

.sidebar-box__link:hover {
  color: var(--primary-color);
}

.sidebar-form {
  display: grid;
  gap: 15px;
}

.share-section {
  padding: 40px 0;
}

.share {
  text-align: center;
}

.share__title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.share__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white-color);
  transition: var(--transition);
}

.share__button:hover {
  transform: translateY(-5px);
  color: var(--white-color);
}

.share__button--facebook {
  background-color: #3b5998;
}

.share__button--twitter {
  background-color: #1da1f2;
}

.share__button--linkedin {
  background-color: #0077b5;
}

.share__button--email {
  background-color: #6c757d;
}

.related-articles {
  padding: 80px 0;
}

/* Legal Pages
   ========================================================================== */
.legal-content__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}

.legal-content__toc {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 30px;
  background-color: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content__toc-title {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.legal-content__toc-list {
  list-style: none;
}

.legal-content__toc-list a {
  display: block;
  padding: 8px 0;
  color: var(--black-color);
  transition: var(--transition);
}

.legal-content__toc-list a:hover {
  color: var(--primary-color);
}

.legal-content__section {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
}

.legal-content__heading {
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
}

.legal-content__subheading {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.legal-content__text p {
  margin-bottom: 20px;
}

.legal-content__text ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}

.legal-content__text li {
  margin-bottom: 10px;
}

/* Cookie Consent
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  padding: 20px 0;
  display: none;
}

.cookie-consent__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-consent__title {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.cookie-consent__text {
  font-size: 0.9rem;
  color: #6c757d;
}

.cookie-consent__buttons {
  display: flex;
  gap: 10px;
}

.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.cookie-settings__inner {
  width: 100%;
  max-width: 600px;
  background-color: var(--white-color);
  border-radius: 8px;
  overflow: hidden;
}

.cookie-settings__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.cookie-settings__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.cookie-settings__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cookie-settings__content {
  padding: 20px;
  max-height: 400px;
  overflow-y: auto;
}

.cookie-settings__option {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.cookie-settings__option:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-settings__option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-settings__option-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.cookie-settings__option-text {
  font-size: 0.9rem;
  color: #6c757d;
}

.cookie-settings__footer {
  padding: 20px;
  border-top: 1px solid #e9ecef;
  text-align: right;
}

/* Switch
   ========================================================================== */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
}

input:checked + .slider {
  background-color: var(--primary-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Media Queries
   ========================================================================== */
@media (max-width: 1200px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
  }
  
  .banner__title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 60px 0;
  }
  
  .about__inner,
  .featured-article__inner {
    grid-template-columns: 1fr;
  }
  
  .about__image {
    order: -1;
  }
  
  .footer__inner {
    grid-template-columns: 1fr;
  }
  
  .footer__links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .article__inner {
    grid-template-columns: 1fr;
  }
  
  .legal-content__inner {
    grid-template-columns: 1fr;
  }
  
  .legal-content__toc {
    position: static;
    margin-bottom: 30px;
  }
  
  .services__grid--three {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  }
}

@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }
  
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--white-color);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav.show {
    height: auto;
  }
  
  .nav__list {
    flex-direction: column;
    padding: 20px;
  }
  
  .nav__item {
    margin: 0;
    margin-bottom: 15px;
  }
  
  .burger {
    display: flex;
  }
  
  .banner {
    height: 500px;
  }
  
  .banner__title {
    font-size: 2rem;
  }
  
  .banner__buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .newsletter__inner,
  .newsletter__form {
    flex-direction: column;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
  }
  
  .thank-you__buttons {
    flex-direction: column;
  }
  
  .cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .section__title {
    font-size: 2rem;
  }
  
  .banner__title {
    font-size: 1.8rem;
  }
  
  .page-header__title {
    font-size: 2.2rem;
  }
  
  .article-header__title {
    font-size: 2rem;
  }
  
  .featured-article__title {
    font-size: 1.8rem;
  }
  
  .testimonial {
    padding: 15px;
  }
  
  .share__buttons {
    flex-wrap: wrap;
  }
}