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

:root {
  --primary-color: #D4A373;
  --secondary-color: #8B4513;
  --accent-color: #F4E4C1;
  --dark-color: #2C1810;
  --light-color: #FAF7F2;
  --text-color: #3E2723;
  --border-color: #E0D5C7;
  --success-color: #4CAF50;
  --error-color: #E53935;
}

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

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

/* Header */
.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.container-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
}

.navigation-main {
  display: flex;
  gap: 30px;
}

.navigation-main a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

.navigation-main a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFF8E7 100%);
  padding: 80px 0;
}

.container-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

/* Sections */
.overview-section,
.problems-section,
.solution-section,
.features-section,
.target-audience,
.testimonials-section,
.inspiration-section,
.pricing-section,
.contact-section {
  padding: 80px 0;
}

.container-standard h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 50px;
  color: var(--dark-color);
}

/* Overview */
.feature-overview-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.feature-overview-list li {
  padding: 15px 0 15px 40px;
  position: relative;
  font-size: 18px;
}

.feature-overview-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
  font-size: 24px;
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.problem-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
}

.problem-card h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

/* Solution Section */
.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-text h2 {
  text-align: left;
  margin-bottom: 25px;
}

.solution-text p {
  margin-bottom: 20px;
  font-size: 17px;
}

.benefits-list {
  list-style: none;
  margin-top: 25px;
}

.benefits-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-weight: 500;
}

.benefits-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.solution-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.feature-item {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 22px;
}

/* Audience Grid */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.audience-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.audience-card:hover {
  transform: translateY(-5px);
}

.audience-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.audience-card h3 {
  padding: 20px 25px 10px;
  color: var(--secondary-color);
  font-size: 24px;
}

.audience-card p {
  padding: 0 25px 25px;
  font-size: 16px;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--accent-color);
}

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

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-size: 17px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

/* Inspiration */
.inspiration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.inspiration-content img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.inspiration-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.inspiration-quote {
  font-style: italic;
  font-size: 20px;
  color: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  margin-top: 30px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.pricing-card h3 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.price {
  font-size: 48px;
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 25px;
}

.price span {
  font-size: 18px;
  color: var(--text-color);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 12px 35px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.pricing-button:hover {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: var(--accent-color);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 24px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-info a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--primary-color);
}

/* Footer */
.site-footer {
  background-color: var(--dark-color);
  color: #fff;
  padding: 60px 0 20px;
}

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

.footer-column h4 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 18px;
}

.footer-column a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-column p {
  margin-bottom: 10px;
  color: #ddd;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 24, 16, 0.98);
  color: #fff;
  padding: 25px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  display: none;
}

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

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

.cookie-content p {
  flex: 1;
  font-size: 15px;
}

.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn.accept {
  background-color: var(--success-color);
  color: #fff;
}

.cookie-btn.accept:hover {
  background-color: #45a049;
}

.cookie-btn.decline {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cookie-btn.decline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #fff;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  cursor: pointer;
  color: var(--text-color);
}

.modal-content h2 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Blog Pages */
.blog-hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFF8E7 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 48px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.blog-subtitle {
  font-size: 20px;
  color: var(--text-color);
}

.blog-posts-section {
  padding: 80px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

.post-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-link {
  text-decoration: none;
  color: inherit;
}

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-content {
  padding: 25px;
}

.post-content h2 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: left;
}

.post-excerpt {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 15px;
}

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

/* Single Post */
.post-single {
  padding: 60px 0;
}

.post-header {
  text-align: center;
  margin-bottom: 40px;
}

.post-header h1 {
  font-size: 42px;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.post-meta {
  color: #888;
  font-size: 16px;
}

.post-featured-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 15px;
  margin: 0 auto 50px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.post-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.post-content-wrapper h2 {
  font-size: 32px;
  color: var(--secondary-color);
  margin: 40px 0 20px;
  text-align: left;
}

.post-content-wrapper h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin: 30px 0 15px;
}

.post-content-wrapper p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.post-footer {
  max-width: 800px;
  margin: 60px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.back-to-blog {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

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

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FFF8E7 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.about-hero h1 {
  font-size: 48px;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 20px;
  color: var(--text-color);
}

.mission-section {
  padding: 80px 0;
}

.mission-content h2 {
  text-align: center;
  margin-bottom: 40px;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-section {
  padding: 80px 0;
  background-color: var(--accent-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.team-member {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member h3 {
  font-size: 24px;
  color: var(--secondary-color);
  margin: 20px 0 5px;
  padding: 0 20px;
}

.member-position {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
  padding: 0 20px;
}

.member-bio {
  padding: 0 20px 25px;
  font-size: 15px;
  line-height: 1.6;
}

.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.value-item {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.value-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 24px;
}

/* Legal Pages */
.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  font-size: 42px;
  color: var(--dark-color);
  margin-bottom: 30px;
  text-align: center;
}

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

.legal-content h2 {
  font-size: 28px;
  color: var(--secondary-color);
  margin: 40px 0 20px;
}

.legal-content p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0 20px 30px;
  font-size: 17px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .container-hero,
  .solution-content,
  .inspiration-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .navigation-main {
    gap: 15px;
  }

  .navigation-main a {
    font-size: 14px;
  }

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

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

  .pricing-card.featured {
    transform: scale(1);
  }
}

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

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

  .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .container-standard h2 {
    font-size: 28px;
  }

  .logo-text {
    font-size: 18px;
  }
}