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

body {
    font-family: "Nata Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #8f863b;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #8f863b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #28162d;
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: #3e3e3e;
}

.cookie-content a {
    color: #4b424d;
    text-decoration: underline;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, #4b424d, #f0f557);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: #28162d;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #8f863b;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8f863b;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
} 
/* new styles  */
/* Загальні стилі */
:root {
    --primary-color: #47324c;
    --secondary-color: #a2994b;
    --text-color: #333;
    --bg-color: #fff;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Утиліти */
  .text-center {
    text-align: center;
  }
  
  .mb-1 {
    margin-bottom: 0.5rem;
  }
  
  .mb-2 {
    margin-bottom: 1rem;
  }
  
  .mb-3 {
    margin-bottom: 1.5rem;
  }
  
  .mb-4 {
    margin-bottom: 2rem;
  }
  
  .mt-1 {
    margin-top: 0.5rem;
  }
  
  .mt-2 {
    margin-top: 1rem;
  }
  
  .mt-3 {
    margin-top: 1.5rem;
  }
  
  .mt-4 {
    margin-top: 2rem;
  }
  
  /* Заголовки */
  .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  .subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--text-color);
  }
  
  /* Кнопки */
  .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(71, 50, 76, 0.2);
  }
  
  .btn-primary:hover {
    background-color: #5a4062;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(71, 50, 76, 0.25);
  }
  
  .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(162, 153, 75, 0.2);
  }
  
  .btn-secondary:hover {
    background-color: #b4aa57;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(162, 153, 75, 0.25);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* Стилі для hero секції */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(71, 50, 76, 0.8) 0%,
      rgba(71, 50, 76, 0.4) 100%
    );
    z-index: -1;
  }
  
  .hero-content {
    color: white;
    max-width: 650px;
    padding: 30px;
    position: relative;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  /* Адаптивність */
  @media (max-width: 768px) {
    .hero {
      height: 80vh;
    }
    
    .hero-content {
      padding: 20px;
      text-align: center;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .btn {
      padding: 10px 25px;
      font-size: 0.9rem;
    }
  }
  /* Стилі для блоку 2: Філософія */
.section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
  }
  
  .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .col {
    padding: 0 15px;
    flex: 1;
  }
  
  .text-content {
    margin-bottom: 1.5rem;
  }
  
  .philosophy-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Стилі для блоку 3: Історії трансформації */
  .card {
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  .card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }
  
  .card-text {
    margin-bottom: 0;
  }
  
  /* Стилі для блоку 4: Методи */
  .methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .method-item {
    padding: 1.5rem;
    border-left: 3px solid var(--secondary-color);
    background-color: rgba(71, 50, 76, 0.03);
    border-radius: 0 8px 8px 0;
    transition: var(--transition);
  }
  
  .method-item:hover {
    background-color: rgba(71, 50, 76, 0.06);
    transform: translateX(5px);
  }
  
  .method-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  
  /* Адаптивність для всіх блоків */
  @media (max-width: 768px) {
    .row {
      flex-direction: column;
    }
    
    .col {
      margin-bottom: 1.5rem;
    }
    
    .methods-grid {
      grid-template-columns: 1fr;
    }
    
    .section {
      padding: 3rem 0;
    }
  }
  /* Стилі для блоку 5: Тарифні плани */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
   }
   
   .price-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
   }
   
   .price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
   }
   
   .price-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
   }
   
   .price-header {
    padding: 1.5rem;
    background-color: var(--primary-color);
    color: white;
   }
   
   .price-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
   }
   
   .price-amount {
    font-size: 2.2rem;
    font-weight: bold;
   }
   
   .price-description {
    font-size: 0.9rem;
    opacity: 0.9;
   }
   
   .price-features {
    padding: 1.5rem;
    flex-grow: 1;
    background-color: white;
   }
   
   .feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
   }
   
   .feature-item {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
   }
   
   .feature-item i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
   }
   
   /* Стилі для блоку 6: Практичні інструменти */
   .tools-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
   }
   
   .tool-item {
    background-color: rgba(71, 50, 76, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
   }
   
   .tool-item:hover {
    background-color: rgba(71, 50, 76, 0.06);
   }
   
   .tool-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: block;
   }
   
   .tool-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
   }
   
   /* Стилі для блоку 7: Чому варто обрати наш підхід */
   .advantages-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
   }
   
   .advantage-item {
    position: relative;
    padding-left: 3rem;
   }
   
   .advantage-item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
   }
   
   .advantage-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
   }
   
   /* Адаптивність */
   @media (max-width: 768px) {
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }
    
    .price-card {
      width: 100%;
    }
    
    .advantages-container {
      grid-template-columns: 1fr;
    }
   }
   
   @media (max-width: 480px) {
    .tools-container {
      grid-template-columns: 1fr;
    }
   }
   /* Стилі для блоку 8: Процес співпраці */
.process-container {
    position: relative;
    padding: 2rem 0;
   }
   
   .process-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
   }
   
   .process-steps {
    flex: 1;
    min-width: 300px;
   }
   
   .process-image {
    flex: 1;
    min-width: 300px;
   }
   
   .process-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(71, 50, 76, 0.15);
   }
   
   .step-list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
   }
   
   .step-list:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background-color: var(--secondary-color);
    opacity: 0.5;
   }
   
   .step-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 2rem;
   }
   
   .step-item:last-child {
    margin-bottom: 0;
   }
   
   .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 1;
   }
   
   .step-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
   }
   
   /* Стилі для блоку 9: Контакти */
   .contact-section {
    position: relative;
    background: linear-gradient(to bottom right, rgba(71, 50, 76, 0.05), rgba(162, 153, 75, 0.05));
    border-radius: 10px;
    overflow: hidden;
   }
   
   .contact-content {
    margin: 0 auto 2rem;
   }
   
   .contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
   }
   
   .contact-email i {
    color: var(--secondary-color);
    font-size: 1.5rem;
   }
   
   .email-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
   }
   
   .email-link:hover {
    color: var(--secondary-color);
   }
   
   /* Стилі для форми */
   .contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
   }
   
   .form-group {
    margin-bottom: 1.5rem;
    position: relative;
   }
   
   .form-group input,
   .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(71, 50, 76, 0.2);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
   }
   
   .form-group input:focus,
   .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(71, 50, 76, 0.1);
    outline: none;
   }
   
   .error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
   }
   
   .submit-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
   }
   
   .submit-button:hover {
    background-color: #5a4062;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(71, 50, 76, 0.2);
   }
   
   /* Адаптивність */
   @media (max-width: 768px) {
    .process-row {
      flex-direction: column-reverse;
    }
    
    .step-item {
      padding-left: 40px;
    }
    
    .contact-form {
      padding: 1.5rem;
    }
   }