/* Новая цветовая схема для мужского самочувствия */
:root {
  --primary-color: #8B4513; /* Коричневый */
  --secondary-color: #CD853F; /* Песочный */
  --accent-color: #D2691E; /* Оранжево-коричневый */
  --text-primary: #2F1B14; /* Темно-коричневый */
  --text-secondary: #5D4E37; /* Коричнево-серый */
  --background-light: #FFF8DC; /* Кремовый */
  --background-white: #FFFEF7; /* Молочно-белый */
  --success-color: #228B22; /* Лесной зеленый */
  --warning-color: #FF8C00; /* Темно-оранжевый */
}

/* Сброс и базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.male-wellness-body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
}

/* Хедер */
.wellness-header {
  background: var(--background-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

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

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



.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.main-navigation .nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: var(--background-light);
}

/* Мобильное меню */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: 0.3s;
}

/* Hero секция */
.page-hero-section {
  padding: 120px 2rem 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  text-align: center;
}

.page-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.update-info {
  background: rgba(255,255,255,0.2);
  padding: 1rem 2rem;
  border-radius: 25px;
  display: inline-block;
}

.update-date {
  font-weight: 500;
}

/* Контентная секция */
.content-section {
  padding: 80px 2rem;
  background: var(--background-white);
}

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

.intro-block {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  border-left: 5px solid var(--primary-color);
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.7;
}

.content-block {
  margin-bottom: 3rem;
  background: var(--background-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.content-heading {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.content-text p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-text li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Типы информации */
.info-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-type-card {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--primary-color);
}

.info-type-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-type-card ul {
  list-style: none;
  padding: 0;
}

.info-type-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  color: var(--text-secondary);
}

.info-type-card li:last-child {
  border-bottom: none;
}

/* Использование данных */
.usage-list {
  margin: 2rem 0;
}

.usage-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: 12px;
}

.usage-icon {
  font-size: 2.5rem;
  min-width: 60px;
}

.usage-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.usage-content p {
  color: var(--text-secondary);
  margin: 0;
}

/* Меры безопасности */
.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.security-item {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid var(--success-color);
}

.security-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.security-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* Случаи передачи данных */
.transfer-cases {
  margin: 2rem 0;
}

.case-item {
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.case-item.allowed {
  background: #f0fff4;
  border-left: 5px solid var(--success-color);
}

.case-item.prohibited {
  background: #fff5f5;
  border-left: 5px solid #ff6b6b;
}

.case-item h4 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.case-item.allowed h4 {
  color: var(--success-color);
}

.case-item.prohibited h4 {
  color: #ff6b6b;
}

.case-item ul {
  list-style: none;
  padding: 0;
}

.case-item li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

/* Права пользователя */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.right-item {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.right-item:hover {
  transform: translateY(-5px);
}

.right-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.right-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.right-item p {
  color: var(--text-secondary);
  margin: 0;
}

/* Типы cookie */
.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cookie-type {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  border-top: 4px solid var(--accent-color);
}

.cookie-type h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.cookie-type p {
  color: var(--text-secondary);
  margin: 0;
}

/* Методы уведомления */
.notification-methods {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.notification-methods li {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Контактная информация */
.contact-info {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.contact-method {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.contact-method:last-child {
  margin-bottom: 0;
}

.contact-method a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-method a:hover {
  text-decoration: underline;
}

/* Важное уведомление */
.important-notice {
  background: linear-gradient(135deg, var(--warning-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 15px;
  margin: 3rem 0;
  text-align: center;
}

.important-notice h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.important-notice p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

/* Футер */
.wellness-footer {
  background: var(--text-primary);
  color: var(--background-white);
  padding: 3rem 2rem 1rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-description {
  opacity: 0.8;
  margin-bottom: 1rem;
}

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

.footer-heading {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--background-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  color: var(--secondary-color);
}

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

.footer-copyright {
  opacity: 0.7;
}

/* Адаптивность */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 1rem;
  }
  
  .page-hero-title {
    font-size: 2rem;
  }
  
  .content-heading {
    font-size: 1.5rem;
  }
  
  .info-types {
    grid-template-columns: 1fr;
  }
  
  .security-measures {
    grid-template-columns: 1fr;
  }
  
  .rights-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-types {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .usage-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .content-block {
    padding: 1.5rem;
  }
  
  .page-hero-title {
    font-size: 1.5rem;
  }
  
  .important-notice {
    padding: 2rem;
  }
}