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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #222;
  background-color: #fdf6f0;
}

/* Container */
.sw-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Hero */
.sw-hero {
  background: linear-gradient(135deg, #2a5d34 0%, #8b5e3c 100%);
  color: #fff;
  padding: 6rem 2rem;
  font-family: 'Poppins', sans-serif;
}

.sw-hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.sw-hero-text {
  flex: 1 1 400px;
}

.sw-hero-text h2 {
  font-size: 1.5rem;
  color: #cbe5b4;
  margin-bottom: 0.5rem;
}

.sw-hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sw-hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.sw-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: #cbe5b4;
  color: #2a5d34;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sw-btn:hover {
  background-color: #aedc99;
  transform: translateY(-2px);
}

.sw-hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.sw-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Offers */
.sw-offers {
  padding: 4rem 2rem;
  background-color: #f2f5f0;
}

.sw-offers h2 {
  text-align: center;
  color: #2a5d34;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.sw-offers-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sw-offer {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.sw-offer-logo img {
  max-width: 150px;
  margin-bottom: 1rem;
}

.sw-offer h3 {
  color: #556b2f;
  margin-bottom: 1rem;
}

.sw-offer p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.sw-offer ul {
  text-align: left;
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.sw-offer ul li {
  margin-bottom: 0.5rem;
}

.sw-btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background-color: #8b5e3c;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sw-btn-secondary:hover {
  background-color: #a07050;
}

/* About Section */
.sw-about {
  padding: 5rem 2rem;
  background-color: #edf5ea;
}

.sw-about-text {
  max-width: 900px;
  margin: 0 auto;
}

.sw-about-text h2 {
  font-size: 2rem;
  color: #3a6a3b;
  margin-bottom: 1rem;
}

.sw-about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sw-responsible-columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.sw-responsible-list {
  list-style: none;
  padding-left: 0;
  flex: 1 1 300px;
}

.sw-responsible-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
}

/* Первая колонка — иконка ✔ */
.sw-responsible-list.check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #8b5e3c;
  font-weight: bold;
}

/* Вторая колонка — иконка 🎯 */
.sw-responsible-list.target li::before {
  content: "🎯";
  position: absolute;
  left: 0;
}

.sw-about-text a {
  color: #3a6a3b;
  text-decoration: underline;
}

.sw-responsible {
  background-color: #f7f7f7;
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.sw-responsible h2 {
  font-size: 2.5rem;
  color: #c90000;
  margin-bottom: 2rem;
}

.sw-responsible p {
  max-width: 900px;
  margin: 1rem auto;
  line-height: 1.7;
  font-size: 1.1rem;
  color: #333;
}

.sw-responsible-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sw-responsible-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sw-responsible-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c90000;
}
.sw-about-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #c90000;
}
.gslyu-logos {
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}
a {
  text-decoration: none;
}
a:hover {
  color: #fff;
}
.sw-privacy {
  background-color: #f0f4ed; /* светло-зелёный фон */
  color: #3a3a2f; /* тёмно-коричневый текст */
  padding: 3rem 2rem;
  font-family: 'Arial', sans-serif;
}

/* Вступительный текст */
.sw-privacy-intro {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Сетка блоков */
.sw-privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Отдельный блок */
.sw-privacy-block {
  background-color: #ffffff;
  border-left: 4px solid #3a6a3b; /* зелёный акцент */
  padding: 1.5rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Номер шага */
.sw-privacy-block .sw-step {
  display: inline-block;
  background-color: #3a6a3b; /* зелёный */
  color: #fff;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  border-radius: 50%;
  margin-right: 0.6rem;
}

/* Заголовки блоков */
.sw-privacy-block h2 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

/* Текст блоков */
.sw-privacy-block p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Последний блок */
.sw-privacy-block.sw-final {
  border-left-color: #6b4f2f; /* коричневый акцент */
  background-color: #fefaf5;
}
/* Footer */
.sw-footer {
  background-color: #3a6a3b;
  color: #fff;
  padding: 3rem 2rem;
  font-size: 0.95rem;
}

.sw-footer a {
  color: #f0e6d2;
  text-decoration: none;
}

.sw-footer a:hover {
  text-decoration: underline;
}

.sw-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.sw-footer-logos h3,
.sw-footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.sw-logos-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.invert-logo {
  filter: brightness(1) invert(1);
  max-height: 40px;
}

.sw-footer-links ul {
  list-style: none;
  padding: 0;
}

.sw-footer-links li {
  margin-bottom: 0.6rem;
}

.sw-footer-info p {
  margin: 0.5rem 0;
}
.sw-logos-wrap a img {
    max-height: 50px;
    transition: transform 0.3s;
}
/* Responsive Text & Spacing */
@media (max-width: 768px) {
  .sw-footer-grid {
    flex-direction: column-reverse;
    display: flex;
  }
  .sw-hero h1 {
    font-size: 2.2rem;
  }
  .sw-hero p {
    font-size: 1rem;
  }
  .sw-offers h2,
  .sw-about h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .sw-hero {
    padding: 6rem 1rem;
  }
  .sw-offers-grid {
    gap: 1.5rem;
  }
}
