* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2328;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #efe9e3;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #fff;
  border-bottom: 1px solid #e6e0d7;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 0.85rem;
  background: #fef3c7;
  color: #7c2d12;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #fcd34d;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 600;
  color: #374151;
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2937;
  color: #fff;
  padding: 90px 8% 100px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 33, 0.68);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  font-size: 1.1rem;
  margin: 0;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f97316;
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1f2328;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #d6cbbf;
  font-weight: 600;
  cursor: pointer;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.section {
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.offset-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 300px;
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.image-card {
  flex: 1 1 320px;
  background: #efe9e3;
  padding: 12px;
  border-radius: 22px;
}

.image-card img {
  width: 100%;
  height: 360px;
  border-radius: 18px;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
}

.service-card button {
  align-self: flex-start;
}

.background-panel {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1523413651479-597eb2da0ad6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1f2937;
  color: #fff;
  border-radius: 28px;
  padding: 40px;
  overflow: hidden;
}

.background-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.64);
}

.background-panel > * {
  position: relative;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ece3d7;
}

.form-shell {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

.form-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 220px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d0c5;
  font-size: 1rem;
}

button[type="submit"] {
  margin-top: 16px;
}

.footer {
  margin-top: auto;
  padding: 40px 8%;
  background: #1f2328;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer a {
  color: #e5e7eb;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d1d5db;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  padding: 14px 18px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.35);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.ghost {
  background: transparent;
  border: 1px solid #c7b9a6;
  color: #4b5563;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.ghost-primary {
  background: #1d4ed8;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.simple-hero {
  background: #fff;
  padding: 60px 8% 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-hero img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  background-color: #efe9e3;
}

.info-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-block {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #ece3d7;
}

.contact-panel {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.contact-panel img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  background-color: #efe9e3;
}

.contact-details {
  flex: 1 1 300px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid #e8dfd4;
}

.muted {
  color: #6b7280;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f0fdf4;
  color: #166534;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid #bbf7d0;
}
