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

:root {
  --primary: #2c5f4f;
  --secondary: #8b4513;
  --accent: #c9a961;
  --dark: #1a1a1a;
  --light: #f8f5f0;
  --white: #ffffff;
  --gray: #666666;
  --border: #e0e0e0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.3rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

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

.privacy-content p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

.privacy-buttons {
  display: flex;
  gap: 10px;
}

.btn-accept,
.btn-learn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-accept:hover {
  background: #234a3d;
}

.btn-learn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-learn:hover {
  background: var(--white);
  color: var(--dark);
}

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

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

.logo a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

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

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

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

.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  overflow: hidden;
  background-image: url(../festive_visuals/hero.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.03)"/><circle cx="900" cy="400" r="120" fill="rgba(255,255,255,0.03)"/><circle cx="600" cy="200" r="60" fill="rgba(255,255,255,0.03)"/></svg>');
}

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

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background: #b89850;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 169, 97, 0.3);
}

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

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

section {
  padding: 60px 0;
}

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

.section-header h2 {
  margin-bottom: 10px;
  color: var(--primary);
}

.section-header p {
  color: var(--gray);
  font-size: 15px;
}

.services-grid,
.features-grid,
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card,
.feature-item,
.category-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-card {
  background: var(--light);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card i,
.feature-item i,
.category-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.service-card h3,
.feature-item h3,
.category-card h3 {
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p,
.feature-item p,
.category-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 15px;
}

.btn-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-link:hover {
  color: var(--secondary);
}

.about {
  background: var(--light);
}

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

.about-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 15px;
  color: var(--gray);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 5px;
}

.testimonials {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--light);
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 14px;
  margin-bottom: 3px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--gray);
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  text-align: center;
  background-image: url(../festive_visuals/decoration.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  margin-bottom: 25px;
  opacity: 0.95;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--white);
  opacity: 0.8;
}

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

.footer-copy {
  font-size: 13px;
  opacity: 0.8;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  background-image: url(../festive_visuals/hero-2.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

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

.product-card {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.product-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

.product-card p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.process {
  background: var(--light);
}

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

.step-item {
  text-align: center;
  padding: 25px;
  background: var(--white);
  border-radius: 8px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
  font-family: 'Cormorant Garamond', serif;
}

.step-item h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.step-item p {
  font-size: 14px;
  color: var(--gray);
}

.contact-section {
  background: var(--white);
}

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

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 30px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 3px;
}

.info-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 3px;
  font-size: 14px;
}

.info-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 35px;
  border-radius: 8px;
}

.contact-form h3 {
  margin-bottom: 25px;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.map-section {
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-section {
  padding: 80px 0;
  background: var(--light);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.thank-you-content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.thank-you-content > p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 15px;
}

.thank-you-info {
  background: var(--light);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  text-align: left;
}

.thank-you-info p {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.thank-you-info ul {
  list-style: none;
  padding: 0;
}

.thank-you-info li {
  padding: 8px 0;
  color: var(--gray);
  font-size: 14px;
  position: relative;
  padding-left: 25px;
}

.thank-you-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.thank-you-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  padding: 60px 0;
  background: var(--white);
}

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

.policy-content h1 {
  color: var(--primary);
  margin-bottom: 10px;
}

.policy-date {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 30px;
}

.policy-content h2 {
  color: var(--dark);
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.policy-content strong {
  color: var(--dark);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }

  .nav.active {
    max-height: 300px;
    padding: 20px;
  }

  .nav-link {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .services-grid,
  .features-grid,
  .categories-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .privacy-buttons {
    justify-content: center;
  }

  .thank-you-content {
    padding: 35px 25px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn-primary,
  .thank-you-actions .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  .hero {
    height: 350px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .page-hero {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .service-card,
  .product-card {
    padding: 25px 15px;
  }
}
