* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #1b5b4d;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1b5b4d;
  outline-offset: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

aside.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #111c1a;
  color: #f5f2ee;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand .name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand .tagline {
  font-size: 13px;
  color: #c1d3ce;
}

.ad-label {
  padding: 10px 12px;
  background: #2a4f46;
  border-radius: 8px;
  font-size: 12px;
  color: #f1f6f5;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

nav a {
  color: #f5f2ee;
  font-weight: 600;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  border: none;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  background: #f7c65a;
  color: #1f2328;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #f7c65a;
  color: #f7c65a;
}

main.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  padding: 30px;
  background: #fdfbf8;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #d8e2dd;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  display: flex;
  gap: 24px;
  align-items: center;
}

.section.split {
  align-items: stretch;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-box {
  flex: 1;
  padding: 26px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.section-accent {
  flex: 1;
  border-radius: 16px;
  padding: 26px;
  background: #ecf3f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-accent img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #d8e2dd;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  background: #dfe7e3;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: #fdf9f0;
  border-radius: 14px;
  border: 1px solid #f1e4c8;
}

.price-item strong {
  font-size: 18px;
}

.price-tag {
  font-size: 20px;
  color: #1b5b4d;
  font-weight: 700;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #f7c65a;
  padding-bottom: 2px;
}

.form-panel {
  background: #111c1a;
  color: #f5f2ee;
  padding: 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
}

.form-panel button {
  align-self: flex-start;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  background: #1b5b4d;
  color: #f5f2ee;
}

.footer {
  margin-top: 20px;
  padding: 24px;
  background: #0c1514;
  color: #cdd7d2;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer small {
  color: #9fb1ab;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  color: #1f2328;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-title {
  font-size: 32px;
  margin: 0;
}

.simple-section {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #fdfbf8;
  padding: 20px;
  border-radius: 14px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  aside.sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
    flex-direction: row;
  }

  .hero,
  .section {
    flex-direction: column;
  }
}
