* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --noir: #0a0a0a;
  --charcoal: #1c1c1c;
  --gold: #d4a574;
  --cream: #f4ede4;
  --white: #fff;
  --gray: #8a8a8a;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--noir);
  overflow-x: hidden;
  background: var(--cream);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 {
  font-size: 4.5rem;
  letter-spacing: -2px;
}
h2 {
  font-size: 3rem;
  letter-spacing: -1px;
}
h3 {
  font-size: 1.8rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
header {
  position: relative;
  z-index: 1000;
  padding: 0;
  background: var(--noir);
}
.header-container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 30px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 50px;
}
.nav-menu a {
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
}
.nav-menu a::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scale(0);
  transition: 0.3s;
}
.nav-menu a:hover::before,
.nav-menu a.active::before {
  transform: translateX(-50%) scale(1);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
}
.hero {
  min-height: 90vh;
  background: var(--noir);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background-image: url(../visuals_nl/hero.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hero .container {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 40px;
  align-items: center;
  max-width: 1400px;
}
.hero-content {
  padding: 100px 0 100px 0;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 30px;
  line-height: 0.95;
  font-weight: 300;
}
.hero h1 strong {
  display: block;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
}
.hero p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 500px;
  line-height: 1.8;
  background-color: black;
  padding: 40px;
}
.hero-image {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(212, 165, 116, 0.2);
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hero-image::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(212, 165, 116, 0.15);
  right: 15%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.cta-button {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 18px 45px;
  border: 2px solid var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  z-index: -1;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-button:hover {
  border-color: var(--gold);
  color: var(--noir);
}
.cta-button:hover::before {
  left: 0;
}
.cta-button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}
.cta-button.primary::before {
  background: var(--white);
}
.cta-button.secondary {
  border-color: var(--noir);
  color: var(--noir);
}
.cta-button.secondary::before {
  background: var(--gold);
}
section {
  padding: 120px 0;
  position: relative;
}
.intro {
  background: var(--white);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}
.intro-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 80px;
  align-items: center;
}
.intro-text {
  padding-right: 40px;
}
.intro-text h2 {
  color: var(--noir);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
  padding-left: 80px;
}
.intro-text h2::before {
  content: '01';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  font-weight: 600;
}
.intro-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 0.95rem;
}
.intro-image {
  position: relative;
  padding: 40px 0;
  width: 80%;
}
.intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}
.services-preview {
  background: var(--noir);
  color: var(--white);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.services-preview h2 {
  text-align: left;
  color: var(--white);
  margin-bottom: 80px;
  font-weight: 300;
  font-size: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold);
}
.service-card {
  background: var(--charcoal);
  padding: 60px 40px;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.5s;
}
.service-card:hover::before {
  width: 100%;
}
.service-card:hover {
  background: var(--noir);
  transform: translateY(-10px);
}
.service-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 30px;
  display: block;
}
.service-card h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 0.9rem;
  line-height: 1.8;
}
.service-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.service-link::after {
  content: '→';
  margin-left: 10px;
  transition: 0.3s;
}
.service-link:hover::after {
  margin-left: 15px;
}
.approach {
  background: var(--cream);
  position: relative;
}
.approach::before {
  content: 'PROCESS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.4;
  letter-spacing: -10px;
  z-index: 0;
  font-family: 'Cormorant Garamond', serif;
}
.approach .container {
  position: relative;
  z-index: 1;
}
.approach h2 {
  text-align: center;
  color: var(--noir);
  margin-bottom: 100px;
  font-weight: 300;
  font-size: 3.5rem;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.approach-item {
  background: var(--white);
  padding: 50px;
  position: relative;
  border-left: 3px solid transparent;
  transition: 0.4s;
}
.approach-item:hover {
  border-left-color: var(--gold);
  transform: translateX(10px);
}
.approach-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}
.approach-item h3 {
  color: var(--noir);
  margin-bottom: 20px;
  font-size: 1.6rem;
  padding-right: 80px;
}
.approach-item p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.9rem;
}
.benefits {
  background: var(--noir);
  color: var(--white);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}
.benefits-content {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: center;
}
.benefits-image {
  position: relative;
  height: 700px;
}
.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}
.benefits-text {
  padding: 0 80px 0 100px;
}
.benefits-text h2 {
  color: var(--white);
  margin-bottom: 50px;
  font-weight: 300;
  font-size: 3rem;
}
.benefits-list {
  list-style: none;
  margin-bottom: 60px;
}
.benefits-list li {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.benefits-list li:last-child {
  border-bottom: none;
}
.benefits-list i {
  color: var(--gold);
  font-size: 1.3rem;
  margin-top: 2px;
}
.cta-section {
  background: var(--gold);
  color: var(--noir);
  text-align: center;
  padding: 150px 0;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.cta-section h2 {
  color: var(--noir);
  margin-bottom: 30px;
  font-size: 4rem;
  font-weight: 300;
}
.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 60px;
  opacity: 0.8;
}
.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}
.page-hero {
  background: var(--noir);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  background: var(--gold);
  right: 0;
  top: 0;
  opacity: 0.05;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 300;
}
.page-hero p {
  font-size: 1.15rem;
  color: var(--gray);
}
.service-detail {
  background: var(--white);
}
.detail-content {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 100px;
  align-items: center;
}
.detail-text h2 {
  color: var(--noir);
  margin-bottom: 40px;
  font-weight: 300;
  font-size: 2.5rem;
  position: relative;
  padding-left: 60px;
}
.detail-text h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.detail-text p {
  color: var(--gray);
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 0.95rem;
}
.detail-image {
  position: relative;
  width: 80%;
}
.detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}
.service-includes {
  background: var(--cream);
}
.service-includes h2 {
  text-align: center;
  color: var(--noir);
  margin-bottom: 80px;
  font-weight: 300;
  font-size: 3rem;
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.include-item {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: 0.4s;
}
.include-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: 0.4s;
}
.include-item:hover::after {
  width: 80%;
}
.include-item:hover {
  transform: translateY(-5px);
}
.include-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 25px;
}
.include-item h3 {
  color: var(--noir);
  margin-bottom: 15px;
  font-size: 1.2rem;
}
.include-item p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}
.pricing {
  background: var(--noir);
  color: var(--white);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}
.pricing h2 {
  text-align: center;
  color: var(--white);
  margin-bottom: 80px;
  font-weight: 300;
  font-size: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gold);
}
.price-card {
  background: var(--charcoal);
  padding: 60px 40px;
  text-align: center;
  transition: 0.4s;
  position: relative;
}
.price-card:hover {
  background: var(--noir);
}
.price-card.featured {
  background: var(--gold);
  color: var(--noir);
}
.price-card.featured .price {
  color: var(--noir);
}
.price-card.featured .price-features {
  color: var(--noir);
}
.price-card.featured .price-features li {
  color: var(--noir);
}
.price-card.featured .price-features i {
  color: var(--noir);
}
.price-card.featured .price-button {
  background: var(--noir);
  color: var(--gold);
  border-color: var(--noir);
}
.price-card h3 {
  color: var(--white);
  margin-bottom: 30px;
  font-size: 1.6rem;
}
.price-card.featured h3 {
  color: var(--noir);
}
.price {
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 40px;
  font-family: 'Cormorant Garamond', serif;
}
.price-features {
  list-style: none;
  margin-bottom: 50px;
  text-align: left;
}
.price-features li {
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.9rem;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-features li:last-child {
  border-bottom: none;
}
.price-features i {
  color: var(--gold);
  font-size: 1rem;
}
.price-button {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 40px;
  border: 2px solid var(--white);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.4s;
}
.price-button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--noir);
}
.contact-section {
  background: var(--white);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0;
}
.contact-info {
  background: var(--noir);
  color: var(--white);
  padding: 80px 60px;
}
.contact-info h2 {
  color: var(--white);
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 2.5rem;
}
.contact-info p {
  margin-bottom: 50px;
  line-height: 1.9;
  color: var(--gray);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: 0.3s;
  cursor: pointer;
}
.contact-item:hover {
  transform: translateX(10px);
}
.contact-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 5px;
}
.contact-item h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-item p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}
.contact-form-wrapper {
  background: var(--cream);
  padding: 80px 60px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--noir);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  padding: 18px 20px;
  border: none;
  border-bottom: 2px solid var(--noir);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: 0.3s;
  background: transparent;
  color: var(--noir);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--noir);
}
.checkbox-label input[type='checkbox'] {
  margin-top: 4px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}
.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}
.submit-button {
  background: var(--noir);
  color: var(--white);
  padding: 18px 50px;
  border: none;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.4s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  align-self: flex-start;
}
.submit-button:hover {
  background: var(--gold);
  color: var(--noir);
}
.map-section {
  background: var(--white);
  padding: 0;
}
.map-section h2 {
  text-align: center;
  color: var(--noir);
  margin-bottom: 60px;
  font-weight: 300;
  font-size: 3rem;
  padding-top: 80px;
}
.map-wrapper iframe {
  width: 100%;
  height: 500px;
  border: none;
  filter: grayscale(100%);
}
.thankyou-section,
.error-section {
  background: var(--cream);
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.thankyou-content,
.error-content {
  text-align: center;
  max-width: 800px;
  padding: 80px 60px;
  background: var(--white);
}
.thankyou-content i {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 40px;
}
.error-content h1 {
  font-size: 12rem;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1;
}
.thankyou-content h1,
.error-content h2 {
  color: var(--noir);
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 3rem;
}
.thankyou-content p,
.error-content p {
  margin-bottom: 50px;
  line-height: 1.9;
  font-size: 1.05rem;
  color: var(--gray);
}
.thankyou-actions,
.error-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}
.policy-section {
  background: var(--white);
  padding: 100px 0 80px;
}
.policy-section h1 {
  color: var(--noir);
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 3.5rem;
}
.policy-date {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 60px;
}
.policy-content {
  max-width: 900px;
  margin: 0 auto;
}
.policy-content h2 {
  color: var(--noir);
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 2rem;
  position: relative;
  padding-left: 40px;
}
.policy-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 2px;
  background: var(--gold);
}
.policy-content h3 {
  color: var(--noir);
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.policy-content h4 {
  color: var(--noir);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.policy-content p {
  margin-bottom: 20px;
  line-height: 1.9;
  color: var(--gray);
}
.policy-content ul {
  margin-bottom: 30px;
  padding-left: 30px;
}
.policy-content ul li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--gray);
}
footer {
  background: var(--noir);
  color: var(--white);
  padding: 50px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-info p {
  font-size: 0.85rem;
  color: var(--gray);
}
.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: 0.3s;
  letter-spacing: 1px;
}
.footer-links a:hover {
  color: var(--gold);
}
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--noir);
  color: var(--white);
  padding: 30px;
  z-index: 1000;
  transform: translateY(100%);
  transition: 0.4s;
  border-top: 2px solid var(--gold);
}
.privacy-popup.show {
  transform: translateY(0);
}
.privacy-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.privacy-content p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
  color: var(--gray);
}
.privacy-content a {
  color: var(--gold);
  text-decoration: underline;
}
#accept-privacy {
  background: var(--gold);
  color: var(--noir);
  border: none;
  padding: 15px 35px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#accept-privacy:hover {
  background: var(--white);
}
@media (max-width: 1050px) {
  .container {
    padding: 0 25px;
  }

  .logo {
    font-size: 0.8rem;
  }

  .header-container {
    padding: 25px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--noir);
    flex-direction: column;
    padding: 100px 30px;
    gap: 30px;
    transition: 0.4s;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-menu a {
    color: var(--cream);
    font-size: 1rem;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 70vh;
    padding: 60px 0;
    background-size: cover;
  }
  .hero .container {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }
  .hero-image {
    display: none;
  }
  .page-hero {
    padding: 80px 0 60px;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .intro {
    clip-path: none;
  }
  .intro-content,
  .detail-content,
  .benefits-content,
  .contact-wrapper {
    grid-template-columns: 100%;
    gap: 40px;
  }
  .intro-text h2 {
    padding-left: 50px;
    font-size: 1.8rem;
  }
  .intro-text h2::before {
    font-size: 3rem;
    top: -5px;
  }
  .intro-image {
    padding: 20px 0;
  }
  .intro-image img {
    height: 350px;
    clip-path: none;
  }
  .detail-image img {
    height: 350px;
    clip-path: none;
  }
  .benefits {
    clip-path: none;
  }
  .benefits-image {
    height: 350px;
    order: -1;
  }
  .benefits-image img {
    clip-path: none;
  }
  .benefits-text {
    padding: 0;
  }
  .services-preview {
    clip-path: none;
  }
  .services-preview h2 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .approach {
    padding: 60px 0;
  }
  .approach::before {
    font-size: 6rem;
    opacity: 0.2;
  }
  .approach h2 {
    font-size: 2rem;
    margin-bottom: 60px;
  }
  .approach-grid,
  .includes-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .approach-item {
    padding: 35px 25px;
  }
  .pricing {
    clip-path: none;
  }
  .pricing h2 {
    font-size: 2rem;
    margin-bottom: 50px;
  }
  .contact-info,
  .contact-form-wrapper {
    padding: 50px 25px;
  }
  .contact-info h2 {
    font-size: 2rem;
  }
  .cta-section {
    clip-path: none;
    padding: 80px 0;
  }
  .cta-section h2 {
    font-size: 2.2rem;
  }
  .cta-buttons,
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-button {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  section {
    padding: 60px 0;
  }
  .error-content h1 {
    font-size: 5rem;
  }
  .policy-section {
    padding: 80px 0 60px;
  }
  .thankyou-content,
  .error-content {
    padding: 50px 30px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  .header-container {
    padding: 20px;
  }
  .hero {
    min-height: 60vh;
    padding: 40px 0;
  }
  .hero .container {
    padding: 0 20px;
  }
  .hero-content {
    padding: 30px 0;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .page-hero {
    padding: 70px 0 50px;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero p {
    font-size: 1rem;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .intro-text h2 {
    padding-left: 40px;
    font-size: 1.5rem;
  }
  .intro-text h2::before {
    font-size: 2.5rem;
  }
  .intro-image img {
    height: 300px;
  }
  .detail-image img {
    height: 300px;
  }
  .benefits-image {
    height: 300px;
  }
  .services-preview h2,
  .approach h2,
  .pricing h2,
  .service-includes h2 {
    font-size: 1.7rem;
  }
  .approach::before {
    font-size: 4rem;
  }
  .approach-item {
    padding: 30px 20px;
  }
  .include-item {
    padding: 30px 20px;
  }
  .contact-info,
  .contact-form-wrapper {
    padding: 40px 20px;
  }
  .contact-info h2 {
    font-size: 1.7rem;
  }
  .cta-section {
    padding: 60px 0;
  }
  .cta-section h2 {
    font-size: 1.8rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
  .error-content h1 {
    font-size: 3.5rem;
  }
  .thankyou-content,
  .error-content {
    padding: 40px 25px;
  }
  .policy-section {
    padding: 70px 0 50px;
  }
  .policy-section h1 {
    font-size: 2rem;
  }
  .policy-content h2 {
    font-size: 1.5rem;
    padding-left: 30px;
  }
  .policy-content h2::before {
    width: 20px;
  }
  section {
    padding: 50px 0;
  }
}
