:root {
            --primary: hsl(348, 64%, 39%);
            --secondary: hsl(348, 64%, 24%);
            --accent: hsl(348, 64%, 64%);
            --text-dark: #222;
            --text-light: #f8f9fa;
            --bg-light: #ffffff;
            --bg-gray: #f5f5f5;
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        header {
            background-color: var(--bg-light);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }

        .logo-section img {
            width: 50px;
            height: 50px;
        }

        .company-name {
            font-family: 'Roboto', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 3px;
            background-color: var(--text-dark);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        @media (max-width: 968px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--bg-light);
                flex-direction: column;
                gap: 0;
                padding: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                max-height: 600px;
            }

            .nav-links a {
                padding: 1rem 2rem;
                width: 100%;
                display: block;
                border-bottom: 1px solid #e0e0e0;
            }

            .nav-links a::after {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 1rem;
            }

            .company-name {
                font-size: 1.2rem;
            }

            .logo-section img {
                width: 40px;
                height: 40px;
            }
        }

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
}

.about-section {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-light);
  padding: 80px 20px;
}

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

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}

.about-text {
  color: var(--text-dark);
  line-height: 1.8;
}

.about-text h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-dark);
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  background: var(--bg-gray);
  padding: 35px 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.value-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 12px;
  font-weight: 600;
}

.value-card p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

.mission-vision {
  background: var(--bg-gray);
  padding: 50px;
  border-radius: 8px;
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-box, .vision-box {
  padding: 20px;
}

.mission-box h3, .vision-box h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.mission-box p, .vision-box p {
  color: var(--text-dark);
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 968px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mission-vision {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 30px;
  }

  .about-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 60px 15px;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision {
    padding: 30px 20px;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.portfolio-section {
  padding: 80px 20px;
  background: var(--white);
  font-family: 'Open Sans', sans-serif;
}

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

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.portfolio-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 12px 28px;
  background: var(--bg-light);
  border: 2px solid transparent;
  color: var(--text-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--secondary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.portfolio-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-content {
  padding: 25px;
}

.portfolio-category {
  display: inline-block;
  padding: 5px 15px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.portfolio-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--secondary);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

.modal-body h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.modal-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.modal-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.modal-meta-item strong {
  color: var(--primary);
  font-weight: 600;
}

.modal-description {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 25px;
}

.modal-features {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  margin-top: 25px;
}

.modal-features h4 {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-features li {
  color: var(--text-light);
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.modal-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 15px;
  }

  .portfolio-header h2 {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .modal-body {
    padding: 25px;
  }

  .modal-body h3 {
    font-size: 1.6rem;
  }

  .modal-image {
    height: 250px;
  }

  .modal-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .portfolio-header h2 {
    font-size: 1.7rem;
  }

  .portfolio-content h3 {
    font-size: 1.2rem;
  }

  .filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-btn {
    width: 100%;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.advantages-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  font-family: 'Open Sans', sans-serif;
}

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

.advantages-header {
  text-align: center;
  margin-bottom: 60px;
}

.advantages-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.advantages-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.advantage-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.advantage-card:hover::before {
  transform: scaleX(1);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg);
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.advantage-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .advantages-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .advantages-section {
    padding: 60px 15px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .advantages-header {
    margin-bottom: 40px;
  }
  
  .advantages-header h2 {
    font-size: 1.9rem;
  }
  
  .advantages-header p {
    font-size: 1rem;
  }
  
  .advantage-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .advantages-header h2 {
    font-size: 1.6rem;
  }
  
  .advantage-card h3 {
    font-size: 1.15rem;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
}

.statistics-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Open Sans', sans-serif;
}

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

.statistics-header {
  text-align: center;
  margin-bottom: 60px;
}

.statistics-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 16px;
  font-weight: 700;
}

.statistics-header p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--primary);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  padding: 16px;
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

.stat-context {
  font-size: 0.85rem;
  color: #888;
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 768px) {
  .statistics-section {
    padding: 60px 20px;
  }

  .statistics-header h2 {
    font-size: 2rem;
  }

  .statistics-header p {
    font-size: 1rem;
  }

  .statistics-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

footer {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 60px 20px 20px;
  font-family: 'Open Sans', sans-serif;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3,
.footer-policies h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--text-light);
  font-weight: 600;
}

.footer-about p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-contact-item strong {
  min-width: 100px;
  color: var(--text-light);
  font-weight: 600;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-links ul,
.footer-policies ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-policies li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-policies a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-policies a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 30px 20px;
  z-index: 10000;
  border-top: 3px solid var(--primary);
  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-header h4 {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  font-size: 1.4rem;
  margin: 0 0 10px 0;
  font-weight: 600;
}

.cookie-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 15px 0;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--bg-light);
  border-radius: 6px;
  border-left: 3px solid var(--primary);
}

.cookie-category-icon {
  font-size: 1.2rem;
  min-width: 24px;
}

.cookie-category-content h5 {
  font-family: 'Roboto', sans-serif;
  color: var(--text-dark);
  font-size: 1rem;
  margin: 0 0 5px 0;
  font-weight: 600;
}

.cookie-category-content p {
  color: #666;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-category-required {
  background: #e8f5e9;
  border-left-color: #4caf50;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: #4caf50;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cookie-btn-reject {
  background: #757575;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background: #616161;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-btn-manage {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-btn-manage:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  footer {
    padding: 40px 15px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #cookieNotice {
    padding: 20px 15px;
  }

  .cookie-header h4 {
    font-size: 1.2rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .footer-contact-item {
    flex-direction: column;
    gap: 5px;
  }

  .footer-contact-item strong {
    min-width: auto;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-page { padding: 4rem 0; }
.blog-page h1 { margin-bottom: 3rem; text-align: center; }
.blog-card { margin-bottom: 2rem; transition: transform 0.3s; overflow: hidden; }
.blog-card:hover { transform: translateY(-5px); }
.blog-card .card-img-top { height: 200px; object-fit: cover; }
.blog-meta { font-size: 0.9rem; color: #888; margin-bottom: 1rem; }

.article-content { max-width: 900px; margin: 0 auto; padding: 4rem 2rem; font-family: Open Sans, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(348, 64%, 39%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Roboto, sans-serif; color: hsl(348, 64%, 24%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(348, 64%, 39%); }
.article-hero-img { width: 100%; height: auto; border-radius: 12px; margin-bottom: 2rem; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.blog-article h2 { color: hsl(348, 64%, 24%); font-family: Roboto, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(348, 64%, 24%); font-family: Roboto, sans-serif; }
.blog-article a { color: hsl(348, 64%, 39%); }
.blog-article a:hover { color: hsl(348, 64%, 64%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(348, 64%, 39%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #e0e0e0;
  --success: #28a745;
  --error: #dc3545;
}

.contact-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
  padding: 80px 20px;
  font-family: 'Open Sans', sans-serif;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group label .required {
  color: var(--primary);
  margin-left: 3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(348, 64%, 39%, 0.1);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.submit-btn {
  width: 100%;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 28, 54, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
}

.info-card h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h4::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.info-item {
  margin-bottom: 18px;
  display: flex;
  align-items: start;
  gap: 12px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-icon::before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.info-value {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.info-value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
}

.info-value a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-dark);
  font-weight: 600;
}

.hours-time {
  color: var(--text-light);
}

.hours-closed {
  color: var(--primary);
  font-weight: 600;
}

.location-note {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  border-left: 3px solid var(--accent);
}

.location-note p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 968px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper,
  .info-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 50px 15px;
  }

  .contact-header h2 {
    font-size: 1.75rem;
  }

  .contact-header p {
    font-size: 1rem;
  }

  .contact-form-wrapper h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .info-card h4 {
    font-size: 1.2rem;
  }

  .hours-list li {
    flex-direction: column;
    gap: 4px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(348, 64%, 39%);
    --secondary-color: hsl(348, 64%, 24%);
    --accent-color: hsl(348, 64%, 64%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 0;
    border-radius: 0;
  }
  
  .policy-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
    font-size: 1.75rem;
  }
  
  .policy-content h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.35rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.25rem;
  }
  
  .cookie-table {
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .cookie-table thead {
    background-color: var(--primary-color);
    color: white;
  }
  
  .cookie-table th {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    padding: 1rem;
  }
  
  .cookie-table td {
    padding: 0.875rem;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
  }
  
  .contact-card h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-card a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-card a:hover {
    color: var(--accent-color);
  }
  
  .list-styled {
    list-style: none;
    padding-left: 0;
  }
  
  .list-styled li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
  }
  
  .list-styled li:before {
    content: "▸";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-block;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-medium: #444;
  --text-light: #666;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
}

.faq-section {
  padding: var(--spacing-xl) var(--spacing-md);
  background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-light) 100%);
  font-family: 'Open Sans', sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.faq-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
  line-height: 1.2;
}

.faq-header p {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.faq-item {
  background: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: var(--bg-light);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.4;
}

.faq-question:hover {
  background-color: #fafafa;
}

.faq-question.active {
  color: var(--primary);
  background-color: #fef8f9;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: relative;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question.active .faq-icon {
  transform: rotate(90deg);
  background-color: var(--primary);
}

.faq-question.active .faq-icon::before,
.faq-question.active .faq-icon::after {
  background-color: var(--bg-light);
}

.faq-question.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
  max-height: 1000px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer-content {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.7;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--border-color);
}

.faq-answer-content p {
  margin-bottom: var(--spacing-sm);
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-answer-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.faq-cta {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 8px;
  text-align: center;
  color: var(--bg-light);
}

.faq-cta h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.faq-cta p {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}

.faq-cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--bg-light);
  color: var(--primary);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .faq-section {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-answer.active {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .faq-answer-content {
    font-size: 0.9375rem;
  }

  .faq-cta h3 {
    font-size: 1.25rem;
  }

  .faq-cta p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .faq-header h2 {
    font-size: 1.75rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 0.9375rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-icon::before {
    width: 8px;
  }

  .faq-icon::after {
    height: 8px;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.newsletter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.newsletter-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.newsletter-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.newsletter-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.newsletter-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 40px 0;
  line-height: 1.7;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-input-wrapper {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 18px 25px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-dark);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.newsletter-submit {
  padding: 18px 45px;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-submit:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-submit:active {
  transform: translateY(0);
}

.newsletter-benefits {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 35px;
  flex-wrap: wrap;
}

.newsletter-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-benefit svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
}

.newsletter-privacy {
  margin-top: 25px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.newsletter-privacy a {
  color: var(--white);
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.newsletter-privacy a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 20px;
  }

  .newsletter-heading {
    font-size: 2rem;
  }

  .newsletter-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 15px;
  }

  .newsletter-input-wrapper {
    min-width: 100%;
  }

  .newsletter-submit {
    width: 100%;
    padding: 16px 35px;
  }

  .newsletter-benefits {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .newsletter-heading {
    font-size: 1.75rem;
  }

  .newsletter-icon {
    width: 60px;
    height: 60px;
  }

  .newsletter-icon svg {
    width: 30px;
    height: 30px;
  }

  .newsletter-input {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
}

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

.hero-section {
  background: var(--bg-light);
  padding: var(--spacing-lg) var(--spacing-sm);
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.hero-content {
  text-align: center;
  padding: var(--spacing-md) var(--spacing-sm);
}

.hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.hero-content h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  line-height: 1.4;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-advantages {
  list-style: none;
  margin: var(--spacing-md) 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-advantages li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  background: var(--bg-gray);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.hero-advantages li::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.hero-advantages li::after {
  content: '✓';
  position: absolute;
  color: white;
  font-weight: bold;
  font-size: 14px;
  margin-left: -18px;
  margin-top: 4px;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-md);
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background: var(--primary);
  color: var(--bg-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-btn-secondary:hover {
  background: var(--primary);
  color: var(--bg-light);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .hero-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.75rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .hero-advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
  }

  .hero-advantages li {
    font-size: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }

  .hero-content h2 {
    font-size: 2rem;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
}

.promo-offer {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fff5f7 100%);
  font-family: 'Open Sans', sans-serif;
  position: relative;
  overflow: hidden;
}

.promo-offer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  opacity: 0.1;
  border-radius: 50%;
}

.promo-offer::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.08;
  border-radius: 50%;
}

.promo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(185, 28, 56, 0.3);
}

.promo-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.promo-description {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 40px 0;
  max-width: 800px;
}

.promo-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
  align-items: start;
}

.promo-deadline-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(185, 28, 56, 0.25);
  position: relative;
  overflow: hidden;
}

.promo-deadline-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.deadline-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0.95;
}

.calendar-icon {
  margin-bottom: 20px;
}

.deadline-date {
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.deadline-year {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  margin-top: 10px;
  opacity: 0.9;
}

.promo-benefits {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.benefits-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin: 0 0 30px 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(185, 28, 56, 0.2);
}

.benefit-text {
  flex: 1;
}

.benefit-text h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 0 0 5px 0;
}

.benefit-text p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.promo-cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.promo-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 20px 60px;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 30px rgba(185, 28, 56, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.promo-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(185, 28, 56, 0.4);
}

.promo-cta-button:hover::before {
  left: 100%;
}

.discount-highlight {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  margin-left: 8px;
}

@media (max-width: 968px) {
  .promo-offer {
    padding: 60px 20px;
  }

  .promo-heading {
    font-size: 36px;
  }

  .promo-description {
    font-size: 16px;
  }

  .promo-content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .deadline-date {
    font-size: 44px;
  }

  .deadline-year {
    font-size: 24px;
  }

  .promo-cta-button {
    font-size: 18px;
    padding: 18px 50px;
  }
}

@media (max-width: 640px) {
  .promo-offer {
    padding: 50px 15px;
  }

  .promo-heading {
    font-size: 28px;
  }

  .promo-description {
    font-size: 15px;
  }

  .promo-deadline-box {
    padding: 30px 20px;
  }

  .deadline-date {
    font-size: 36px;
  }

  .deadline-year {
    font-size: 20px;
  }

  .promo-benefits {
    padding: 30px 20px;
  }

  .benefits-title {
    font-size: 20px;
  }

  .benefit-text h4 {
    font-size: 16px;
  }

  .benefit-text p {
    font-size: 14px;
  }

  .promo-cta-button {
    font-size: 16px;
    padding: 16px 40px;
    width: 100%;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Open Sans', sans-serif;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.testimonials-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-left: 4px solid var(--accent);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--white) 0%, #fef5f7 100%);
  border-left: 4px solid var(--primary);
}

.testimonial-card.compact {
  padding: 25px;
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.star {
  color: #ffc107;
  font-size: 1.2rem;
}

.star.empty {
  color: #e0e0e0;
}

.testimonial-text {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-text.short {
  font-size: 1.05rem;
  font-weight: 500;
}

.testimonial-text.long {
  font-size: 0.95rem;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.customer-details h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0 0 5px 0;
  font-weight: 600;
}

.customer-location {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.location-icon {
  color: var(--accent);
}

.testimonial-date {
  font-size: 0.85rem;
  color: #999;
  margin-top: 5px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.testimonial-highlight {
  background: #fff3e0;
  border-left: 3px solid #ff9800;
  padding: 12px 15px;
  margin: 15px 0;
  border-radius: 4px;
  font-style: italic;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 15px;
  }

  .testimonials-header h2 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .testimonial-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .testimonials-header h2 {
    font-size: 1.75rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .customer-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  font-family: 'Open Sans', sans-serif;
}

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

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.services-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: rotate(5deg) scale(1.1);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e9ecef;
}

.service-price {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
}

.service-price span {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.service-term {
  font-size: 0.85rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 6px 12px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 16px;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    flex-direction: column;
    padding: 24px;
  }

  .service-icon {
    width: 50px;
    height: 50px;
  }

  .service-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .services-header h2 {
    font-size: 1.75rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  .service-price {
    font-size: 1.3rem;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

.blog-preview {
  padding: var(--spacing-xl) var(--spacing-md);
  background: var(--white);
}

.blog-preview__container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-preview__header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.blog-preview__title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.blog-preview__subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.08);
}

.blog-card__content {
  padding: var(--spacing-md);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-card__date,
.blog-card__reading-time {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card__date::before {
  content: '📅';
  font-size: 0.875rem;
}

.blog-card__reading-time::before {
  content: '⏱';
  font-size: 0.875rem;
}

.blog-card__separator {
  color: var(--accent);
}

.blog-card__title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, gap 0.3s ease;
}

.blog-card__link:hover {
  color: var(--secondary);
  gap: 0.75rem;
}

.blog-card__link::after {
  content: '→';
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.blog-card__link:hover::after {
  transform: translateX(4px);
}

.blog-preview__cta {
  text-align: center;
  margin-top: var(--spacing-md);
}

.blog-preview__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(185, 31, 52, 0.3);
}

.blog-preview__button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(185, 31, 52, 0.4);
}

@media (max-width: 768px) {
  .blog-preview {
    padding: var(--spacing-lg) var(--spacing-sm);
  }

  .blog-preview__title {
    font-size: 2rem;
  }

  .blog-preview__subtitle {
    font-size: 1rem;
  }

  .blog-preview__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .blog-card__image-wrapper {
    height: 220px;
  }

  .blog-card__title {
    font-size: 1.25rem;
  }

  .blog-card__content {
    padding: 1.25rem;
  }

  .blog-preview__button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-preview__title {
    font-size: 1.75rem;
  }

  .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .blog-card__separator {
    display: none;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
  --trust-green: #28a745;
  --trust-bg: #f8f9fa;
  --text-dark: #333;
  --border-color: #e0e0e0;
}

.credentials-section {
  padding: 50px 20px;
  background-color: #ffffff;
  font-family: 'Open Sans', sans-serif;
}

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

.credentials-header {
  text-align: center;
  margin-bottom: 35px;
}

.credentials-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin: 0 0 10px 0;
  font-weight: 600;
}

.credentials-header p {
  color: #666;
  font-size: 0.95rem;
  margin: 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.credential-card {
  background-color: var(--trust-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.credential-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.credential-icon svg {
  width: 100%;
  height: 100%;
}

.credential-title {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 992px) {
  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 576px) {
  .credentials-section {
    padding: 40px 15px;
  }

  .credentials-header h2 {
    font-size: 1.6rem;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .credential-card {
    padding: 20px 15px;
  }
}

:root {
  --primary: hsl(348, 64%, 39%);
  --secondary: hsl(348, 64%, 24%);
  --accent: hsl(348, 64%, 64%);
}

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.disclaimer-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.disclaimer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.disclaimer-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.disclaimer-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
}

.disclaimer-title {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
  text-align: center;
}

.disclaimer-content {
  background: #f8f9fa;
  padding: 35px;
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}

.disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .disclaimer-section {
    padding: 40px 15px;
  }

  .disclaimer-container {
    padding: 35px 25px;
  }

  .disclaimer-title {
    font-size: 1.8rem;
  }

  .disclaimer-icon {
    width: 40px;
    height: 40px;
  }

  .disclaimer-content {
    padding: 25px 20px;
  }

  .disclaimer-text {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .disclaimer-header {
    flex-direction: column;
    gap: 10px;
  }

  .disclaimer-title {
    font-size: 1.6rem;
  }

  .disclaimer-content {
    padding: 20px 15px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@400;600&display=swap');
  
  :root {
    --primary-color: hsl(348, 64%, 39%);
    --secondary-color: hsl(348, 64%, 24%);
    --accent-color: hsl(348, 64%, 64%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.7;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
  }
  
  .policy-content h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
    border-left: 4px solid var(--accent-color);
  }
  
  .policy-content h3 {
    color: var(--secondary-color);
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.375rem;
  }
  
  .contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
  }
  
  .contact-card h3 {
    color: white;
    margin-top: 0;
  }
  
  .contact-card a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-card a:hover {
    color: var(--accent-color);
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .section-divider {
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
  }

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Open+Sans:wght@300;400;600&display=swap');
  
  :root {
    --primary-color: hsl(348, 64%, 39%);
    --secondary-color: hsl(348, 64%, 24%);
    --accent-color: hsl(348, 64%, 64%);
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
  }
  
  .policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--primary-color);
    color: var(--primary-color);
  }
  
  .policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    position: relative;
    padding-left: 15px;
  }
  
  .policy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 70%;
    background-color: var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    text-align: justify;
  }
  
  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
  }
  
  .contact-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }
  
  .contact-section h3 {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-section a {
    color: white;
    text-decoration: underline;
  }
  
  .contact-section a:hover {
    color: var(--accent-color);
  }
  
  .effective-date {
    background-color: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
  }
  
  .section-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color), transparent);
    margin: 3rem 0;
  }
  
  strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

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

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, hsl(348, 64%, 97%) 0%, hsl(348, 64%, 92%) 100%);
  font-family: 'Open Sans', sans-serif;
}

.thank-you-container {
  max-width: 600px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 3rem 2rem;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(348, 64%, 39%);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thank-you-subheading {
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: hsl(348, 64%, 24%);
  margin-bottom: 1.5rem;
}

.thank-you-message {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #555555;
  margin-bottom: 2rem;
}

.thank-you-message p {
  margin-bottom: 1rem;
}

.thank-you-message p:last-child {
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.info-card {
  background: hsl(348, 64%, 97%);
  border-left: 4px solid hsl(348, 64%, 64%);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: left;
}

.info-card-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: hsl(348, 64%, 24%);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card-text {
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.icon-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.home-button {
  display: inline-block;
  background: hsl(348, 64%, 39%);
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px hsla(348, 64%, 39%, 0.3);
  margin-top: 1rem;
}

.home-button:hover {
  background: hsl(348, 64%, 24%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(348, 64%, 39%, 0.4);
}

.home-button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .thank-you-container {
    padding: 2rem 1.5rem;
  }

  .success-icon {
    width: 80px;
    height: 80px;
  }

  .thank-you-heading {
    font-size: 2rem;
  }

  .thank-you-subheading {
    font-size: 1.125rem;
  }

  .thank-you-message {
    font-size: 1rem;
  }

  .home-button {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

@media (max-width: 480px) {
  .thank-you-section {
    padding: 1rem;
  }

  .thank-you-container {
    padding: 1.5rem 1rem;
  }

  .success-icon {
    width: 70px;
    height: 70px;
  }

  .thank-you-heading {
    font-size: 1.75rem;
  }

  .thank-you-subheading {
    font-size: 1rem;
  }

  .info-card {
    padding: 0.875rem 1rem;
  }
}