/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00d48a;
  --secondary-color: #00d48a;
  --accent-color: #00d48a;
  --dark-color: #02021e;
  --heading-color: #02021e;
  --light-color: #f5f7fa;
  --text-color: #4e4e62;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

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

/* Navigation */
#header-placeholder {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  background-color: var(--primary-color);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand img {
  height: 40px;
  width: auto;
}

.nav-brand h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  transition: all 0.3s ease-in-out;
}

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

.nav-menu a:hover {
  color: var(--light-color);
}

.nav-social {
  display: flex;
  align-items: center;
}

.nav-social a {
  color: var(--white);
  display: flex;
  align-items: center;
  transition:
    color 0.3s,
    transform 0.3s;
}

.nav-social a:hover {
  color: var(--light-color);
  transform: scale(1.1);
}

.nav-social svg {
  width: 28px;
  height: 28px;
  margin-right: 15px !important;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
  transition:
    transform 2s ease,
    opacity 0.5s ease;
}

.mobile-menu-toggle:active {
  transform: scale(0.9);
  opacity: 0.7;
}

/* Hero Section */
.hero {
  background: #00d48a;
  color: var(--white);
  padding: 100px 0 20px 0;
  min-height: 650px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.app-store-btn,
.play-store-btn {
  display: inline-block;
  text-decoration: none;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.app-store-btn img,
.play-store-btn img {
  height: 50px;
  width: auto;
  display: block;
}

.app-store-btn:hover,
.play-store-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.phone-mockup {
  width: 320px;
  height: 600px;
  background-image: url("images/phone-mockup.webp");
  background-size: cover;
  background-position: center;
  border-radius: 35px;
  margin: 20px auto;
  scale: 1.3;
}

/* Vorteile Section */
.vorteile {
  padding: 80px 0;
  background-color: var(--light-color);
}

.vorteile h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.benefit-card p {
  color: var(--text-color);
}

/* How It Works Section */
.how-it-works {
  padding: 80px 0;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 212, 138, 0.3);
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.step p {
  color: var(--text-color);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--light-color);
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.stars {
  color: #fcd34d;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--dark-color);
}

.testimonial-author p {
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Why Veloro Section */
.why-veloro {
  padding: 60px 0;
  background: var(--primary-color);
}

.why-veloro h2 {
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.why-text p {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--white);
  text-align: left;
}

.why-image {
  text-align: center;
}

.why-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 212, 138, 0.3);
}

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

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

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

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

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background-color: var(--white);
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--light-color);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #00d48a 0%, var(--primary-color) 100%);
  overflow: hidden;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 60px;
  position: relative;
}

.cta-text {
  flex: 1;
  color: var(--white);
  position: relative;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 1.6;
}

.cta-arrow {
  position: absolute;
  width: 100px;
  top: -20px;
  right: -40px;
  opacity: 0.6;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-image {
  flex: 0 0 300px;
  text-align: center;
}

.cta-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Legal Pages */
.legal-content {
  padding: 80px 0;
  background-color: var(--white);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--dark-color);
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.legal-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-text li {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.legal-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-text a:hover {
  color: var(--dark-color);
}

.legal-text strong {
  font-weight: 600;
  color: var(--dark-color);
}

/* Partner Page */
.partner-content,
.jobs-content {
  padding: 100px 0;
  background-color: #f9f9f9;
  min-height: 100vh;
}

.partner-content h1,
.jobs-content h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  text-align: center;
}

.partner-intro,
.jobs-intro,
.partner-benefits,
.jobs-requirements,
.jobs-benefits,
.partner-cta,
.jobs-application {
  max-width: 900px;
  margin: 0 auto 3rem;
  padding: 0;
}

.partner-content h2,
.jobs-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.partner-content p,
.jobs-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.partner-content ul,
.jobs-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.partner-content li,
.jobs-content li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
}

.partner-contact {
  text-align: center;
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.btn-primary:hover {
  background-color: #00b574;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 212, 138, 0.3);
}

.application-form {
  max-width: 600px;
  margin: 2rem auto 0;
}

.application-form .form-group {
  margin-bottom: 1.5rem;
}

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

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.application-form input[type="file"] {
  padding: 10px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  font-weight: normal;
  cursor: pointer;
  line-height: 1.6;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary-color);
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: underline;
}

.application-form button[type="submit"] {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

/* Contact Section */
.contact {
  padding: 80px 0;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

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

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #4338ca;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light-color);
}

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--light-color);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 0.5px solid #dde3dd;
}

.footer-bottom p {
  margin-bottom: 1rem;
  color: var(--light-color);
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0 0.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    color 0.3s,
    transform 0.3s;
}

.social-links a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero .container,
  .why-content {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .benefits-grid,
  .steps,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-content {
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 30px;
  }

  .cta-image {
    flex: 0 0 auto;
  }

  .cta-image img {
    max-width: 250px;
  }

  .cta-arrow {
    display: none;
  }

  .cta h2 {
    font-size: 2rem;
  }
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.98);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.cookie-btn.accept:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

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

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

.cookie-link {
  color: var(--white);
  text-decoration: underline;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .hero {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .vorteile,
  .how-it-works,
  .testimonials,
  .why-veloro,
  .faq,
  .cta,
  .contact {
    padding: 40px 0;
  }

  section h2 {
    font-size: 1.8rem !important;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }

  .legal-content h2 {
    font-size: 1.4rem;
  }

  .legal-text p,
  .legal-text li {
    font-size: 1rem;
  }

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

  .cookie-buttons {
    justify-content: center;
  }
}

/* Contact Page Styles */
.contact-hero {
  background: var(--primary-color);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-hero-content p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-form-wrapper {
  background: var(--white);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: auto;
  min-width: 200px;
}

.btn-submit:hover {
  background-color: #00b874;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 138, 0.3);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--light-color);
  border-radius: 12px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

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

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

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

.contact-info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.contact-info-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-info-content a:hover {
  color: #00b874;
}

.contact-info-content p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

.account-deletion-info {
  background: var(--light-color);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.account-deletion-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.account-deletion-info p {
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
}

.map-section {
  margin-bottom: 0;
}

.map-section .container-fluid {
  padding: 0;
}

.map-section iframe {
  display: block;
  width: 100%;
}

/* Contact Page Responsive */
@media (max-width: 968px) {
  .contact-hero {
    padding: 60px 0 40px;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
