:root {
  --primary: #2d5a3d;
  --primary-dark: #1e3d2a;
  --secondary: #8b6914;
  --accent: #c4956a;
  --light: #f8f6f1;
  --dark: #1a1a1a;
  --gray: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

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

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

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo svg {
  width: 36px;
  height: 36px;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 35px;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

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

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow);
}

.nav-mobile.active {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-mobile a {
  font-weight: 500;
  padding: 10px 0;
  display: block;
}

/* Hero */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--light) 0%, #e8e4db 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-text {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* Story Section */
.story-section {
  padding: 80px 0;
  background: var(--white);
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

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

.story-highlight {
  background: var(--light);
  padding: 25px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 25px 0;
}

.story-highlight p {
  font-style: italic;
  margin: 0;
  color: var(--dark);
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.problem-item {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.problem-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.problem-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.solution-intro {
  text-align: center;
  margin-bottom: 50px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.solution-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-card-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.solution-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
}

.solution-card p {
  color: var(--gray);
}

/* Services/Pricing Section */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-content p {
  color: var(--gray);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.price-unit {
  color: var(--gray);
  font-size: 0.9rem;
}

.service-features {
  margin-bottom: 20px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--gray);
  font-size: 0.9rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  color: var(--white);
}

.testimonials-header p {
  color: rgba(255,255,255,0.8);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-info span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: var(--white);
}

.benefits-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--light);
  border-radius: var(--radius);
}

.benefit-number {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--dark);
}

.benefit-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
  padding: 60px 0;
  background: var(--light);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.trust-item span {
  font-weight: 600;
  color: var(--dark);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-section .btn:hover {
  background: var(--light);
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: var(--white);
}

.form-container {
  background: var(--light);
  padding: 40px 25px;
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

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

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

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn {
  width: 100%;
}

/* Urgency Banner */
.urgency-banner {
  background: var(--secondary);
  color: var(--white);
  padding: 15px;
  text-align: center;
}

.urgency-banner p {
  font-weight: 600;
  font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--light);
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 300px;
}

.faq-answer p {
  color: var(--gray);
}

/* About Page */
.about-hero {
  padding: 140px 0 60px;
  background: var(--light);
  text-align: center;
}

.about-content {
  padding: 60px 0;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

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

.about-values {
  padding: 60px 0;
  background: var(--light);
}

.values-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
}

.value-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Contact Page */
.contact-hero {
  padding: 140px 0 60px;
  background: var(--light);
  text-align: center;
}

.contact-content {
  padding: 60px 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info {
  background: var(--primary);
  color: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  flex-shrink: 0;
}

.contact-item p {
  opacity: 0.9;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  opacity: 1;
}

/* Services Page */
.services-hero {
  padding: 140px 0 60px;
  background: var(--light);
  text-align: center;
}

.services-page-content {
  padding: 60px 0;
}

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

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 15px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.sticky-cta-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.sticky-cta .btn {
  white-space: nowrap;
  padding: 12px 24px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 10000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, var(--light) 0%, #e8e4db 100%);
}

.thanks-content {
  text-align: center;
  max-width: 500px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.thanks-content p {
  color: var(--gray);
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-hero {
  padding: 140px 0 40px;
  background: var(--light);
  text-align: center;
}

.legal-content {
  padding: 60px 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--dark);
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--dark);
}

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

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.legal-content li {
  color: var(--gray);
  margin-bottom: 8px;
  list-style: disc;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--light);
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Desktop Styles */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }

  .hamburger {
    display: none;
  }

  .hero {
    padding: 160px 0 100px;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    text-align: left;
    flex: 1;
  }

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

  .hero p {
    margin-left: 0;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-image {
    flex: 1;
  }

  .hero-stats {
    justify-content: flex-start;
  }

  .story-content {
    flex-direction: row;
    align-items: center;
  }

  .story-text,
  .story-image {
    flex: 1;
  }

  .problem-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .problem-item {
    flex: 1 1 calc(50% - 15px);
  }

  .solution-features {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .solution-card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 15px);
  }

  .testimonials-grid {
    flex-direction: row;
  }

  .testimonial-card {
    flex: 1;
  }

  .benefits-content {
    flex-direction: row;
    align-items: center;
  }

  .benefits-text,
  .benefits-list {
    flex: 1;
  }

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

  .form-container {
    padding: 50px 40px;
  }

  .about-grid {
    flex-direction: row;
    align-items: center;
  }

  .about-text,
  .about-image {
    flex: 1;
  }

  .values-grid {
    flex-direction: row;
  }

  .value-card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info,
  .contact-form-wrapper {
    flex: 1;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .gallery-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .gallery-item {
    flex: 1 1 calc(33.333% - 15px);
  }

  .process-steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .process-step {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .service-card {
    flex: 1 1 calc(33.333% - 20px);
  }

  .sticky-cta-text {
    font-size: 1rem;
  }
}
