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

:root {
  --primary-color: #c41e3a;
  --secondary-color: #2c2c2c;
  --accent-color: #f4d03f;
  --text-color: #333;
  --light-bg: #f8f8f8;
  --white: #ffffff;
  --gray: #666;
  --light-gray: #e0e0e0;
  --dark-gray: #444;
  --success: #28a745;
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.main-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  border-radius: 50%;
  object-fit: cover;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hero-section,
.page-hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero {
  height: 400px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 20px;
}

.hero-title,
.page-title {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle,
.page-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cta-button,
.cta-button-large {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.cta-button-large:hover {
  background: #a01829;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196,30,58,0.3);
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.intro-section,
.story-section,
.services-section,
.menu-preview-section,
.process-section,
.testimonials-section,
.faq-section,
.cta-section,
.values-section,
.team-section,
.commitment-section,
.blog-section,
.newsletter-section,
.contact-info-section,
.contact-form-section,
.faq-contact-section {
  padding: 80px 20px;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.8;
}

.services-grid,
.menu-grid,
.values-grid,
.team-grid,
.blog-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card,
.menu-item,
.value-card,
.team-card,
.blog-card,
.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-align: center;
}

.service-card:hover,
.menu-item:hover,
.value-card:hover,
.team-card:hover,
.blog-card:hover,
.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.translucent-card {
  background: rgba(255,255,255,0.95);
}

.service-icon,
.value-icon,
.contact-info-icon,
.commitment-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-title,
.menu-title,
.value-title,
.team-name,
.contact-info-title,
.commitment-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-description,
.menu-desc,
.value-desc,
.contact-info-text,
.commitment-text {
  color: var(--gray);
  line-height: 1.6;
}

.menu-image,
.team-photo,
.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.menu-price {
  display: block;
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 15px;
}

.process-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

.step-item {
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.step-desc {
  color: var(--gray);
}

.testimonials-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.rating {
  color: var(--accent-color);
}

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

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--gray);
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #8b1426 100%);
  color: var(--white);
  text-align: center;
}

.cta-heading {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-button-large {
  background: var(--white);
  color: var(--primary-color);
}

.cta-button-large:hover {
  background: var(--light-bg);
}

.main-footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 20px 20px;
}

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

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-text,
.footer-contact,
.footer-hours,
.footer-registration {
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.8;
}

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

.footer-link {
  color: #ccc;
  display: block;
  margin-bottom: 8px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44,44,44,0.98);
  color: var(--white);
  padding: 25px;
  z-index: 10000;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

.cookie-title {
  margin-bottom: 10px;
  color: var(--accent-color);
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-link {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.accept-btn {
  background: var(--success);
  color: var(--white);
}

.accept-btn:hover {
  background: #218838;
}

.customize-btn {
  background: var(--accent-color);
  color: var(--secondary-color);
}

.customize-btn:hover {
  background: #e6c136;
}

.decline-btn {
  background: #666;
  color: var(--white);
}

.decline-btn:hover {
  background: #555;
}

.cookie-customize-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
}

.cookie-customize-modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
}

.cookie-option {
  margin: 20px 0;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 8px;
}

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

.story-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--gray);
}

.team-role {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.team-bio {
  color: var(--gray);
  line-height: 1.6;
}

.commitment-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.commitment-item {
  text-align: center;
}

.blog-link {
  display: block;
  height: 100%;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-title {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
}

.newsletter-section {
  background: var(--light-bg);
  text-align: center;
}

.newsletter-text {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--gray);
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 15px;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-button {
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-button:hover {
  background: #a01829;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

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

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-submit-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

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

.map-container iframe {
  width: 100%;
  border-radius: 15px;
}

.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.success-modal.show {
  display: flex;
}

.modal-content-success {
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 20px;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.success-message {
  color: var(--gray);
  margin-bottom: 30px;
}

.close-modal-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.close-modal-btn:hover {
  background: #a01829;
}

.post-article {
  background: var(--light-bg);
}

.post-header-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.post-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-header-content {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  width: 100%;
  padding: 60px 20px 40px;
  color: var(--white);
}

.post-meta-info {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.post-main-title {
  font-size: 2.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.post-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
}

.post-content {
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.post-intro {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
  font-style: italic;
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

.post-subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--gray);
}

.post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.widget-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.widget-post-list {
  list-style: none;
}

.widget-post-link {
  display: block;
  color: var(--gray);
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition);
}

.widget-post-link:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.widget-text {
  color: var(--gray);
  margin-bottom: 20px;
}

.widget-cta-btn {
  display: block;
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  transition: var(--transition);
}

.widget-cta-btn:hover {
  background: #a01829;
}

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

.back-to-blog {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  transition: var(--transition);
}

.back-to-blog:hover {
  background: var(--primary-color);
  color: var(--white);
}

@media (max-width: 1024px) {
  .post-content-wrapper,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .main-nav ul {
    justify-content: center;
  }
  
  .hero-title,
  .page-title {
    font-size: 2rem;
  }
  
  .hero-subtitle,
  .page-subtitle {
    font-size: 1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .post-main-title {
    font-size: 2rem;
  }
  
  .post-content {
    padding: 30px 20px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-section,
  .page-hero {
    height: 400px;
  }
  
  .brand-name {
    font-size: 1.5rem;
  }
  
  .nav-list {
    gap: 15px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .modal-content {
    padding: 25px;
  }
}