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

:root {
  --primary: #2d5a3f;
  --secondary: #f4a261;
  --accent: #e76f51;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
}

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

header {
  background: var(--white);
  padding: 1.2rem 0;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.narrow {
  max-width: 720px;
  margin: 0 auto;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.ad-notice {
  font-size: 0.75rem;
  color: var(--gray);
  padding: 0.3rem 0.8rem;
  background: #f0f0f0;
  border-radius: 4px;
  margin-left: auto;
  margin-right: 1.5rem;
}

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

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
  max-width: 680px;
}

.hero-text {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  color: var(--gray);
  max-width: 600px;
}

.hero-image {
  width: 100%;
  margin-top: 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  background-color: #d4d4d4;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section {
  padding: 5rem 0;
}

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

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

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 3rem;
  max-width: 640px;
}

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

.story-content p {
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.story-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: var(--primary);
}

.inline-image {
  margin: 3rem 0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #d4d4d4;
}

.inline-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cta-inline {
  background: var(--secondary);
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
  text-align: center;
}

.cta-inline h3 {
  margin-top: 0;
  color: var(--dark);
}

.cta-inline p {
  margin-bottom: 1.5rem;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.service-price-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-size: 1rem;
}

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

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

.btn-secondary:hover {
  background: #e09452;
}

.form-section {
  background: var(--light);
  padding: 4rem 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #d4d4d4;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-top: 3rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

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

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-left: 2rem;
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

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

.footer-section a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: var(--gray);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none;
}

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

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-cookie-accept {
  background: var(--secondary);
  color: var(--dark);
}

.btn-cookie-accept:hover {
  background: #e09452;
}

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

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

.disclaimer {
  background: #fff9e6;
  border-left: 4px solid var(--secondary);
  padding: 1.5rem;
  margin: 3rem 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.thanks-box {
  max-width: 600px;
  margin: 5rem auto;
  text-align: center;
  background: var(--light);
  padding: 4rem 2rem;
  border-radius: 8px;
}

.thanks-box h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.thanks-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

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

  nav ul {
    gap: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .footer-content {
    flex-direction: column;
  }

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