/* 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, #c90000, #ffcc00);
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.sw-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.sw-hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.sw-btn {
  background-color: #fff;
  color: #c90000;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.sw-btn:hover {
  background-color: #ffd700;
  color: #000;
  transform: scale(1.05);
}

/* Offers */
.sw-offers {
  background-color: #fff7e6;
  padding: 6rem 0;
  text-align: left;
}

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

.sw-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.sw-offer {
  
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}



.sw-offer h3 {
  margin-bottom: 1rem;
  color: #c90000;
  font-size: 1.6rem;
}

.sw-btn-secondary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 2rem;
  border: 2px solid #c90000;
  border-radius: 50px;
  color: #c90000;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.sw-btn-secondary:hover {
  background-color: #c90000;
  color: #fff;
  transform: scale(1.05);
}

/* About Section */
.sw-about-flex {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Картинка */
.sw-about-image {
  flex: 1 1 400px;
  text-align: center;
}

.sw-about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.sw-about-image img:hover {
  transform: scale(1.05);
}

/* Текст */
.sw-about-text {
  flex: 1 1 500px;
  text-align: left;
}

/* Список преимуществ */
.sw-about-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.sw-about-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.8rem;
}
.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: #fff8f0;
  padding: 4rem 2rem;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
}

.sw-privacy-intro {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.sw-privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.sw-privacy-block {
  background-color: #fff7e6;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sw-privacy-block h2 {
  font-size: 1.3rem;
  color: #c90000;
  margin-bottom: 0.8rem;
}

.sw-step {
  display: inline-block;
  background-color: #c90000;
  color: #fff;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  border-radius: 50%;
  margin-right: 8px;
  font-weight: bold;
}

.sw-privacy-block p {
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.sw-final {
  grid-column: 1 / -1;
  text-align: center;
}
/* Footer */
.sw-footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem 0;
}
.gslyu-logos a img {
    max-height: 50px;
    transition: transform 0.3s;
}
/* Responsive Text & Spacing */
@media (max-width: 768px) {
  .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;
  }
}
