:root {
            --primary: hsl(321, 67%, 46%);
            --secondary: hsl(321, 67%, 31%);
            --accent: hsl(321, 67%, 71%);
            --text-dark: #222;
            --text-light: #fff;
            --bg-light: #ffffff;
            --bg-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Lora', serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Oswald', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }
        
        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-wrapper {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
        }
        
        .company-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }
        
        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-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text-dark);
            margin: 3px 0;
            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: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--bg-light);
                width: 100%;
                text-align: center;
                transition: left 0.3s ease;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 2rem 0;
                gap: 0;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid #eee;
            }
            
            .nav-links a {
                display: block;
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                padding: 1rem;
            }
            
            .company-name {
                font-size: 1.2rem;
            }
            
            .logo-wrapper img {
                width: 40px;
                height: 40px;
            }
        }

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
}

.about-section {
  background: var(--bg-light);
  padding: var(--spacing-xl) var(--spacing-md);
  font-family: 'Lora', serif;
  color: var(--text-dark);
}

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

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

.about-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.about-story {
  background: var(--bg-gray);
  padding: var(--spacing-md);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.about-story h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.about-story p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

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

.about-card {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.about-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-card h3::before {
  content: '';
  width: 4px;
  height: 30px;
  background: var(--primary);
  display: inline-block;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: var(--spacing-sm) 0 0 0;
}

.about-card ul li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.8rem;
}

.about-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

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

.about-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

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

.expertise-highlight h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
}

.expertise-highlight p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

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

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

  .about-header .subtitle {
    font-size: 1rem;
  }

  .about-story h2 {
    font-size: 1.6rem;
  }

  .about-card h3 {
    font-size: 1.4rem;
  }

  .about-image-wrapper img {
    height: 300px;
  }

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

@media (max-width: 480px) {
  .about-header h1 {
    font-size: 1.6rem;
  }

  .about-story {
    padding: var(--spacing-sm);
  }

  .about-card {
    padding: var(--spacing-sm);
  }

  .about-image-wrapper img {
    height: 250px;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

.portfolio-section {
  padding: 5rem 2rem;
  background: var(--white);
  font-family: 'Lora', serif;
  color: var(--text-dark);
}

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

.portfolio-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.portfolio-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: 'Oswald', sans-serif;
  padding: 0.7rem 1.8rem;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

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

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

.portfolio-item {
  background: var(--white);
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.portfolio-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.portfolio-content {
  padding: 1.8rem;
}

.portfolio-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.portfolio-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.view-details {
  font-family: 'Oswald', sans-serif;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.view-details:after {
  content: '→';
  font-size: 1.2rem;
}

.portfolio-item:hover .view-details {
  color: var(--secondary);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  overflow-y: auto;
  padding: 2rem;
}

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

.modal-content {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  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;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2.5rem;
  color: var(--text-dark);
  cursor: pointer;
  background: var(--white);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  z-index: 10;
  transition: all 0.3s ease;
}

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

.modal-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 2.5rem;
}

.modal-category {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.modal-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

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

.modal-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.detail-value {
  font-size: 1rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 3rem 1.5rem;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .modal {
    padding: 1rem;
  }

  .modal-image {
    height: 250px;
  }

  .modal-body {
    padding: 1.5rem;
  }

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

  .modal-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

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

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

  .portfolio-item h3 {
    font-size: 1.3rem;
  }

  .modal-close {
    right: 1rem;
    top: 1rem;
    width: 40px;
    height: 40px;
    font-size: 2rem;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.advantages-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-gray) 0%, #fff 100%);
  font-family: 'Lora', serif;
}

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

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

.advantages-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

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

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

.advantage-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary);
}

.advantage-card:hover::before {
  opacity: 0.05;
}

.advantage-card-content {
  position: relative;
  z-index: 1;
}

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

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

.advantage-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.advantage-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

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

@media (max-width: 1200px) {
  .advantages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .advantages-header h2 {
    font-size: 2.3rem;
  }

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

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

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

  .advantages-header {
    margin-bottom: 40px;
  }

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

  .advantages-header p {
    font-size: 1.05rem;
  }

  .advantage-card {
    padding: 28px 22px;
  }

  .advantage-card h3 {
    font-size: 1.25rem;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
}

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

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

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

.statistics-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.stat-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px 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 25px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

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

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

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

  .statistics-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

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

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

  .stat-label {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .statistics-grid {
    grid-template-columns: 1fr;
  }

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

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f8f9fa;
  --bg-white: #fff;
}

footer {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--text-light);
  padding: 3rem 2rem 1.5rem;
  font-family: 'Lora', serif;
  margin-top: 4rem;
}

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

.footer-about h3,
.footer-contact h3,
.footer-links h3,
.footer-hours h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-contact p {
  margin: 0.7rem 0;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

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

.footer-hours p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-policy-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

#cookieNotice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  z-index: 10000;
  display: none;
  border-top: 4px solid var(--primary);
}

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

.cookie-header h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cookie-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}

.cookie-category {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.cookie-category h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category-required {
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: bold;
  text-transform: uppercase;
}

.cookie-category-optional {
  font-size: 0.75rem;
  color: #666;
  font-weight: normal;
  text-transform: uppercase;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn {
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background: #28a745;
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.cookie-btn-reject {
  background: #6c757d;
  color: var(--text-light);
}

.cookie-btn-reject:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

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

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

@media (max-width: 768px) {
  footer {
    padding: 2rem 1.5rem 1rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy-links {
    justify-content: center;
  }

  #cookieNotice {
    padding: 1.5rem 1rem;
  }

  .cookie-categories {
    grid-template-columns: 1fr;
  }

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

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

.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: Lora, sans-serif; }
.article-header { margin-bottom: 3rem; border-bottom: 2px solid hsl(321, 67%, 46%)20; padding-bottom: 2rem; }
.article-header h1 { font-size: 2.5rem; margin-bottom: 1rem; font-family: Oswald, sans-serif; color: hsl(321, 67%, 31%); }
.article-meta { color: #666; font-size: 0.95rem; margin-bottom: 1.5rem; }
.article-meta i { color: hsl(321, 67%, 46%); }
.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(321, 67%, 31%); font-family: Oswald, sans-serif; margin-top: 2rem; }
.blog-article h3 { color: hsl(321, 67%, 31%); font-family: Oswald, sans-serif; }
.blog-article a { color: hsl(321, 67%, 46%); }
.blog-article a:hover { color: hsl(321, 67%, 71%); }
.blog-article ul, .blog-article ol { margin: 1rem 0; padding-left: 1.5rem; }
.blog-article blockquote { border-left: 4px solid hsl(321, 67%, 46%); padding-left: 1rem; margin: 1.5rem 0; font-style: italic; color: #555; }

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --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;
}

.contact-section {
  background: linear-gradient(135deg, var(--bg-gray) 0%, #ffffff 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  font-family: 'Lora', serif;
  color: var(--text-dark);
}

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

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

.contact-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.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: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: var(--spacing-lg);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

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

.form-submit-btn {
  background: var(--primary);
  color: var(--bg-light);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: var(--spacing-sm);
}

.form-submit-btn:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

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

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-info-card {
  background: var(--bg-light);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
}

.contact-info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--spacing-md);
  gap: var(--spacing-sm);
}

.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: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
}

.info-content {
  flex: 1;
}

.info-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.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;
}

.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: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

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

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

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

.location-note {
  background: var(--bg-gray);
  padding: var(--spacing-md);
  border-radius: 6px;
  margin-top: var(--spacing-md);
}

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

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

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

@media (max-width: 640px) {
  .contact-section {
    padding: var(--spacing-md) var(--spacing-sm);
  }

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

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

  .contact-form-wrapper,
  .contact-info-card {
    padding: var(--spacing-md);
  }

  .contact-form-wrapper h3,
  .contact-info-card h3 {
    font-size: 1.4rem;
  }

  .form-submit-btn {
    width: 100%;
  }

  .hours-list li {
    flex-direction: column;
    gap: 0.3rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:wght@400;500;600;700&display=swap');
  
  :root {
    --primary-color: hsl(321, 67%, 46%);
    --secondary-color: hsl(321, 67%, 31%);
    --accent-color: hsl(321, 67%, 71%);
  }
  
  body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  .policy-content h1,
  .policy-content h2,
  .policy-content h3,
  .policy-content h4,
  .policy-content h5,
  .policy-content h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .policy-content h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 4px solid var(--accent-color);
  }
  
  .policy-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }
  
  .policy-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }
  
  .policy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content ul,
  .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .policy-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .policy-header h1 {
    color: white;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  .last-updated {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .info-box {
    background-color: #f8f9fa;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
  }
  
  .contact-box {
    background: linear-gradient(135deg, var(--accent-color), #f8f9fa);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .contact-box h3 {
    color: var(--primary-color);
    margin-top: 0;
  }
  
  .cookie-type {
    background-color: white;
    border: 2px solid var(--accent-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  
  .cookie-type h3 {
    margin-top: 0;
    color: var(--primary-color);
  }
  
  strong {
    color: var(--secondary-color);
    font-weight: 600;
  }

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --border-color: #e0e0e0;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
  font-family: 'Lora', serif;
}

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

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

.faq-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.faq-grid {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: var(--bg-light);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--bg-gray);
  color: var(--primary);
}

.faq-item.active .faq-question {
  color: var(--primary);
  background: var(--bg-gray);
}

.faq-question-text {
  flex: 1;
  line-height: 1.5;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

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

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

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

.faq-item.active .faq-icon::after {
  opacity: 0;
}

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

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 28px 28px 28px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-answer-content p {
  margin-bottom: 12px;
}

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

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

.faq-answer-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.faq-answer-content li {
  margin-bottom: 8px;
}

.faq-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.faq-category-btn {
  padding: 14px 24px;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-category-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-gray);
}

.faq-category-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg-light);
}

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

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

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

  .faq-question {
    padding: 20px;
    font-size: 1.05rem;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 0.95rem;
  }

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

  .faq-categories {
    grid-template-columns: 1fr;
  }
}

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

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

  .faq-answer-content {
    padding: 0 16px 16px 16px;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
}

.newsletter-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 2rem;
  font-family: 'Lora', serif;
}

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

.newsletter-content {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--accent);
}

.newsletter-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #222;
  margin: 0 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.newsletter-description {
  font-size: 1.125rem;
  color: #444;
  line-height: 1.7;
  margin: 0 0 2.5rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 2.5rem 0;
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.benefit-text {
  font-size: 0.9375rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.25rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Lora', serif;
  color: #333;
  transition: all 0.3s ease;
  background: #ffffff;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(193, 35, 113, 0.1);
}

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

.newsletter-submit {
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193, 35, 113, 0.3);
}

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

.privacy-note {
  font-size: 0.8125rem;
  color: #666;
  margin: 1.5rem 0 0 0;
  line-height: 1.5;
}

.privacy-note a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

.privacy-note a:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 3rem 1.5rem;
  }

  .newsletter-content {
    padding: 2rem 1.5rem;
  }

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

  .newsletter-description {
    font-size: 1rem;
  }

  .newsletter-benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .form-group {
    flex-direction: column;
  }

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

  .newsletter-submit {
    width: 100%;
    padding: 1rem;
  }
}

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

  .newsletter-description {
    font-size: 0.9375rem;
  }

  .benefit-text {
    font-size: 0.875rem;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
}

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

.hero-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 5%;
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-right: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--secondary);
  padding: 8px 20px;
  border-radius: 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--secondary);
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 28px;
  line-height: 1.3;
}

.hero-description {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 32px;
}

.hero-advantages {
  list-style: none;
  margin-bottom: 40px;
  display: grid;
  gap: 16px;
}

.hero-advantages li {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--text-dark);
  padding-left: 36px;
  position: relative;
  line-height: 1.6;
}

.hero-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(199, 21, 133, 0.3);
}

.hero-btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(199, 21, 133, 0.4);
}

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

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

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
}

.hero-image-container::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.hero-image-container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background: var(--primary);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.2;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-2deg) scale(1.05);
}

.hero-stats {
  position: absolute;
  bottom: -40px;
  right: 40px;
  background: #ffffff;
  padding: 24px 32px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.hero-stats-item {
  text-align: center;
}

.hero-stats-number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stats-label {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: var(--text-light);
}

.hero-decoration {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}

.hero-decoration svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content h2 {
    font-size: 24px;
  }

  .hero-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-stats {
    right: 20px;
    bottom: -30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 60px 5%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h2 {
    font-size: 20px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

  .hero-btn {
    text-align: center;
    width: 100%;
  }

  .hero-stats {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 30px;
  }

  .hero-decoration {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-advantages li {
    font-size: 15px;
  }

  .hero-stats {
    padding: 20px 24px;
  }

  .hero-stats-number {
    font-size: 28px;
  }
}

:root {
    --primary: hsl(321, 67%, 46%);
    --secondary: hsl(321, 67%, 31%);
    --accent: hsl(321, 67%, 71%);
    --text-dark: #222;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --white: #ffffff;
  }

  .services-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    font-family: 'Lora', serif;
  }

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

  .services-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .services-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

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

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

  .service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
  }

  .service-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.4s ease;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(201, 21, 126, 0.15);
    border-color: var(--accent);
  }

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

  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
  }

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

  .service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .service-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 140px;
  }

  .service-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .service-terms {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
  }

  .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
  }

  .service-features li {
    padding: 0.4rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
  }

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

  @media (max-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

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

  @media (max-width: 768px) {
    .services-section {
      padding: 3rem 1.5rem;
    }

    .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

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

    .service-card {
      padding: 2rem 1.5rem;
    }

    .service-description {
      min-height: auto;
    }
  }

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
}

.offer-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 50%, #fef5fb 100%);
  font-family: 'Lora', serif;
  color: #222;
}

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

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 8px 24px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  color: var(--secondary);
  margin: 0 0 30px 0;
  line-height: 1.2;
}

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

.offer-content {
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.offer-description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 35px;
}

.offer-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.offer-benefits li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.offer-benefits svg {
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: 2px;
}

.offer-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 20px rgba(196, 30, 116, 0.3);
}

.offer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 30, 116, 0.4);
}

.offer-deadline-box {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.offer-deadline-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.deadline-label {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  opacity: 0.95;
}

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

.deadline-date {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.deadline-subtext {
  font-size: 18px;
  margin-top: 20px;
  opacity: 0.9;
  font-family: 'Lora', serif;
}

.discount-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: #fff;
  color: var(--primary);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.discount-percentage {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.discount-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

  .offer-heading {
    font-size: 38px;
  }

  .offer-content {
    padding: 35px;
  }

  .offer-deadline-box {
    padding: 40px 30px;
  }

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

  .discount-badge {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px;
  }

  .discount-percentage {
    font-size: 26px;
  }

  .discount-text {
    font-size: 12px;
  }
}

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

  .offer-heading {
    font-size: 32px;
  }

  .offer-content {
    padding: 25px;
  }

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

  .offer-benefits li {
    font-size: 15px;
  }

  .offer-cta {
    padding: 15px 35px;
    font-size: 16px;
  }

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

  .deadline-label {
    font-size: 18px;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --white: #fff;
}

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

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

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

.testimonials-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.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(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-left: none;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .customer-name,
.testimonial-card.featured .customer-location {
  color: var(--white);
}

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

.testimonial-card.detailed {
  padding: 35px;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  align-items: center;
}

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

.star.empty {
  color: #ddd;
}

.rating-number {
  margin-left: 8px;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

.testimonial-card.featured .rating-number {
  color: rgba(255,255,255,0.9);
}

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

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

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

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

.testimonial-card.featured .customer-info {
  border-top-color: rgba(255,255,255,0.2);
}

.customer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-card.featured .customer-avatar {
  background: rgba(255,255,255,0.2);
}

.customer-details {
  flex: 1;
}

.customer-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 3px;
  font-weight: 600;
}

.customer-location {
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-highlight {
  background: #fff9e6;
  padding: 15px 20px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 3px solid #ffc107;
}

.testimonial-card.featured .testimonial-highlight {
  background: rgba(255,255,255,0.15);
  border-left-color: rgba(255,255,255,0.4);
}

.testimonial-highlight strong {
  color: var(--primary);
  font-weight: 600;
}

.testimonial-card.featured .testimonial-highlight strong {
  color: var(--white);
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.testimonial-card.featured .quote-icon {
  color: rgba(255,255,255,0.2);
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 50px;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

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

  .testimonials-stats {
    padding: 30px 20px;
  }

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

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

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

  .quote-icon {
    font-size: 2rem;
  }
}

:root {
  --primary-color: hsl(321, 67%, 46%);
  --secondary-color: hsl(321, 67%, 31%);
  --accent-color: hsl(321, 67%, 71%);
  --trust-green: #28a745;
  --trust-bg: #f8f9fa;
  --text-dark: #333;
  --border-light: #e0e0e0;
}

.credentials-section {
  padding: 3rem 1.5rem;
  background: var(--trust-bg);
}

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

.credentials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.credentials-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.credentials-header p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.credential-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

@media (max-width: 768px) {
  .credentials-section {
    padding: 2.5rem 1.5rem;
  }

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

  .credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .credential-card {
    padding: 1.25rem 0.75rem;
  }

  .credential-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }

  .credential-title {
    font-size: 0.875rem;
  }
}

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

  .credentials-header {
    margin-bottom: 2rem;
  }

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

  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .credential-card {
    padding: 1rem;
  }
}

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
  --text-dark: #222;
  --text-light: #555;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
}

.blog-preview {
  padding: 5rem 2rem;
  background: var(--bg-gray);
}

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

.blog-preview__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.blog-preview__title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-preview__subtitle {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px 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 24px rgba(0, 0, 0, 0.12);
}

.blog-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.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: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
  font-size: 0.875rem;
  color: var(--text-light);
}

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

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

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

.blog-card__title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 500;
}

.blog-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card__title-link:hover {
  color: var(--primary);
}

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

.blog-card__link {
  font-family: 'Oswald', sans-serif;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

.blog-card__link::after {
  content: ' →';
  display: inline-block;
  transition: transform 0.3s ease;
}

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

.blog-preview__cta {
  text-align: center;
}

.blog-preview__button {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  background: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  letter-spacing: 0.5px;
}

.blog-preview__button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .blog-preview {
    padding: 3.5rem 1.5rem;
  }

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

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

  .blog-preview__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-card__content {
    padding: 1.5rem;
  }

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

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

@media (max-width: 480px) {
  .blog-preview {
    padding: 3rem 1rem;
  }

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

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

:root {
  --primary: hsl(321, 67%, 46%);
  --secondary: hsl(321, 67%, 31%);
  --accent: hsl(321, 67%, 71%);
}

.disclaimer-section {
  background: #f8f9fa;
  padding: 60px 20px;
  font-family: 'Lora', serif;
}

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

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

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

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

.disclaimer-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  color: #222;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.disclaimer-content {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
}

.disclaimer-content p {
  margin: 0;
}

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

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

  .disclaimer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

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

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

@media (max-width: 480px) {
  .disclaimer-container {
    padding: 30px 20px;
  }

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

  .disclaimer-content {
    font-size: 0.95rem;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;600&display=swap');
  
  body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: hsl(321, 67%, 31%);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: hsl(321, 67%, 46%);
    border-bottom: 4px solid hsl(321, 67%, 71%);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  h2 {
    font-size: 2rem;
    color: hsl(321, 67%, 46%);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid hsl(321, 67%, 71%);
  }
  
  h3 {
    font-size: 1.5rem;
    color: hsl(321, 67%, 31%);
  }
  
  .policy-content {
    background: linear-gradient(135deg, #ffffff 0%, #fef5fb 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .policy-content a {
    color: hsl(321, 67%, 46%);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .policy-content a:hover {
    color: hsl(321, 67%, 31%);
    text-decoration: underline;
  }
  
  .policy-content p {
    margin-bottom: 1.25rem;
    text-align: justify;
  }
  
  .policy-content ul, .policy-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
  }
  
  .policy-content li {
    margin-bottom: 0.75rem;
  }
  
  .effective-date {
    background-color: hsl(321, 67%, 71%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }
  
  .contact-box {
    background-color: hsl(321, 67%, 96%);
    border-left: 5px solid hsl(321, 67%, 46%);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
  }
  
  .highlight-box {
    background-color: hsl(321, 67%, 96%);
    border: 2px solid hsl(321, 67%, 71%);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  }
  
  strong {
    color: hsl(321, 67%, 31%);
  }

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lora:wght@400;600;700&display=swap');

  :root {
    --primary-color: hsl(321, 67%, 46%);
    --secondary-color: hsl(321, 67%, 31%);
    --accent-color: hsl(321, 67%, 71%);
  }

  body {
    font-family: 'Lora', serif;
    color: #333;
    line-height: 1.8;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 4px solid var(--accent-color);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }

  h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--accent-color);
  }

  h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
  }

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

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

  .policy-content {
    background: linear-gradient(to bottom, #ffffff, #fef5fb);
  }

  .terms-intro {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .terms-intro p {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .section-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-color);
  }

  ul, ol {
    margin: 1rem 0;
    padding-left: 2rem;
  }

  li {
    margin-bottom: 0.75rem;
  }

  .contact-box {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
  }

  .contact-box h2 {
    color: white;
    border-left-color: white;
  }

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

  .contact-box a:hover {
    color: white;
  }

  .effective-date {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2rem;
  }

  strong {
    color: var(--secondary-color);
  }

* {
  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(321, 67%, 96%) 0%, hsl(321, 67%, 98%) 100%);
  font-family: 'Lora', serif;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  animation: scaleIn 0.6s 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: 'Oswald', sans-serif;
  font-size: 3rem;
  color: hsl(321, 67%, 46%);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.thank-you-subheading {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: hsl(321, 67%, 31%);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

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

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

.highlight-text {
  color: hsl(321, 67%, 46%);
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: hsl(321, 67%, 96%);
  border-radius: 12px;
  border-left: 4px solid hsl(321, 67%, 46%);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.info-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.button-container {
  margin-top: 2.5rem;
}

.home-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: hsl(321, 67%, 46%);
  color: white;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(194, 33, 110, 0.3);
}

.home-button:hover {
  background: hsl(321, 67%, 31%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 33, 110, 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: 2.25rem;
  }

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

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

  .info-grid {
    padding: 1rem;
  }

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

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

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

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

  .home-button {
    width: 100%;
    padding: 1rem;
  }
}