@import url("colors.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
  color: var(--text-primary);
  background: var(--background-body);
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: var(--background-body);
  box-shadow: 0 1px 3px var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 0;
  display: inline-block;
  height: 30px;
  width: auto;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo a span {
  display: inline-block;
}

.logo a span img {
  height: 30px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.thanks-section{
    background: var(--background-light);
}
.btn-primary {
  background: var(--primary);
  color: var(--text-primary);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.header-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.header-link:hover {
  color: var(--primary);
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: 14px;
}

.icon-phone::before {
  content: "📞";
}

.icon-location::before {
  content: "📍";
}

.icon-search::before {
  content: "🔍";
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2001;
  position: relative;
  transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.hamburger {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 3px;
  background: var(--text-primary);
  left: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 2px;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
  transform: rotate(180deg);
}

.mobile-menu-btn.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-btn.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--background-overlay-initial);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(0px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  background: var(--background-overlay);
  backdrop-filter: blur(2px);
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: var(--background-body);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -5px 0 20px var(--background-overlay-initial);
  will-change: transform;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
  box-shadow: -5px 0 20px var(--shadow-medium);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  background: var(--background-light);
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease 0.05s;
}

.mobile-menu-overlay.active .mobile-menu-header {
  transform: translateY(0);
  opacity: 1;
}

.mobile-logo {
  height: 24px;
  transition: transform 0.2s ease;
}

.mobile-logo:hover {
  transform: scale(1.05);
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: var(--shadow-light);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-content {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-item {
  display: block;
  padding: 0.8rem 0;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-mobile-menu);
  transition: all 0.2s ease;
  transform: translateX(20px);
  opacity: 0;
}

.mobile-menu-overlay.active .mobile-menu-item {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-overlay.active .mobile-menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-item:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-menu-item:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu-item:hover {
  color: var(--primary);
  transform: translateX(5px);
  background: var(--background-menu-hover);
  padding-left: 1rem;
}

.mobile-login {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.3s;
}

.mobile-menu-overlay.active .mobile-login {
  transform: translateY(0);
  opacity: 1;
}

/* Jumbo Hero Section - Barclays Style */
.hero {
  padding: 4rem 0;
  background: var(--background-light);
}

.hero .breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.hero .breadcrumb a:hover {
  text-decoration: underline;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3rem;
  font-weight: normal;
  color: var(--text-heading);
  font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
  margin: 0;
  line-height: 1.2;
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
}

.hero-title::before {
  background-color: var(--text-primary);
  border: 2px solid var(--text-primary);
  border-radius: 10px;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 600px;
}

.jumbo {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

/* Breadcrumb positioned over image */
.jumbo-breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.jumbo-breadcrumb-body {
  padding: 1rem;
}

.jumbo-breadcrumb .breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem;
  background: var(--background-breadcrumb);
  display: inline-block;
  border-radius: 4px;
}

.jumbo-breadcrumb .breadcrumb li {
  display: inline;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.jumbo-breadcrumb .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  margin-left: 0.5rem;
}

.jumbo-breadcrumb .breadcrumb a:hover {
  text-decoration: underline;
}

/* Image with aspect ratio */
.jumbo .jumbo-media {
  aspect-ratio: 3 / 1;
  display: block;
  max-height: 534px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.jumbo img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0 none;
}

/* Content body with negative margin - KEY TECHNIQUE */
.jumbo-body {
  margin-top: -72px;
  width: 100%;
  padding-top: 0;
}

/* Container fluid */
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  min-width: 280px;
}

/* Row */
.row {
  margin-left: -10px;
  margin-right: -10px;
  padding-left: 10px;
  padding-right: 10px;
}

/* Content area */
.jumbo-content {
  padding-top: 30px;
  margin-left: 12.5%;
  background-color: var(--background-body);
  width: 75%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  min-height: 1px;
}

.jumbo-col {
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  min-height: 1px;
}

.col-content {
  width: 66.66%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  min-height: 1px;
}

.aperture-left {
  padding: 2rem;
}

.jumbo-title {
  font-size: 2.5rem;
  font-weight: normal;
  color: var(--primary);
  font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
  position: relative;
  padding-left: 1.5rem;
  margin: 0;
  line-height: 1.2;
}

.jumbo-title::before {
  background-color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 10px;
  content: "";
  display: inline-block;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  z-index: 2;
}

/* Content Section */
.content-section {
  padding: 3rem 0;
}

.intro-text {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch; /* Ensure all cards have equal height */
}

.service-card {
  max-width: 440px;
  width: 100%;
  background: var(--background-card);
  padding: 2rem;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push button to the bottom */
  min-height: 450px; /* Minimum height to ensure uniformity, adjust as needed */
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.service-card h2 {
  font-size: 1.875rem;
  font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
  font-weight: 100;
  line-height: 1.34;
  letter-spacing: 0;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.service-card p {
  font-family: "Expert Sans Light", Verdana, sans-serif;
  margin-top: 0;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 1.875rem;
  word-wrap: break-word;
}

.service-card .disclaimer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.4;
  font-style: italic;
}

.service-card ul {
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 1rem;
}

.service-card li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: -1rem;
  color: var(--primary);
}

.service-card .btn {
  margin-top: auto; /* Push button to the bottom */
  align-self: center; /* Center the button horizontally */
  width: 100%; /* Ensure button takes full width for consistency */
  text-align: center;
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 170px;
}

.form-intro {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--background-form-intro);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.form-intro p {
  margin-bottom: 1rem;
  color: #555;
  font-size: 1.05rem;
}

.form-intro a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.form-intro a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--background-body);
  padding: 2.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row:last-child {
  margin-bottom: 0;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label,
.checkbox-group legend {
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-input);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--focus-shadow);
}

.checkbox-group {
  border: none;
  padding: 0;
}

.checkbox-options {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-weight: normal;
  line-height: 1.4;
  font-size: 0.9rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkbox-text {
  white-space: nowrap;
  overflow: visible;
}

.checkbox-links {
  color: var(--primary);
  text-decoration: none;
  display: inline;
  transition: color 0.2s ease;
}

.checkbox-links:hover {
  text-decoration: underline;
}

.submit-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  color: var(--text-primary);
}

.form-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.form-disclaimer p {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Legal Section */
.legal-section {
  padding: 40px 0;
  background: var(--background-card);
}

.legal-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-heading {
  text-align: center;
  margin-bottom: 30px;
}

.legal-heading h2 {
  font-size: 2.25rem;
  font-family: "Expert Sans Light", "Trebuchet MS", Arial, Verdana, sans-serif;
  font-weight: 100;
  line-height: 1.28;
  letter-spacing: -0.25px;
  color: var(--text-heading);
  margin: 0 0 60px;
}

.legal-content {
  width: 100%;
}

.legal-content ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.legal-item {
  margin-bottom: 20px;
}

.legal-item p {
  color: var(--text-primary);
  font-family: "Expert Sans Light", Verdana, sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.legal-item sup a {
  color: var(--primary);
  text-decoration: none;
}

.legal-item sup a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--background-body);
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column a {
  color: var(--primary);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Footer Legal Section */
.footer-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-disclaimer {
  margin-top: 1.5rem;
}

.footer-disclaimer p {
  font-family: "Expert Sans Light", Verdana, sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.sponsors {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.sponsor-item:hover {
  transform: translateY(-2px);
}

.sponsor-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sponsor-link:hover {
  opacity: 0.8;
}

.sponsor-logo {
  max-width: 150px;
  height: auto;
  width: auto;
  object-fit: contain;
  transition: filter 0.2s ease;
}

.sponsor-logo:hover {
  filter: brightness(1.1);
}

/* Adaptive Images */
picture {
  display: block;
}

picture img {
  display: block;
  width: 100%;
  height: auto;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--cookie-banner);
  color: var(--text-white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px var(--shadow-light);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.cookie-text p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--text-white-light);
}

.cookie-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cookie-text a:hover {
  text-decoration: underline;
  color: var(--link-hover-light);
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn-accept {
  background: var(--primary);
  color: var(--text-primary);
}

.btn-accept:hover {
  background: var(--primary-hover);
}

.btn-settings {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

.btn-settings:hover {
  background: var(--button-settings-hover);
}

.ul-lists {
  padding-left: 20px;
}

/* Error Message Styles */
.error-message {
  display: none;
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Loader Styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background-overlay);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.loader {
  border: 8px solid var(--loader-background);
  border-top: 8px solid var(--primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  position: relative;
  margin: 0;
}

/* Responsive Design */
@media (min-width: 1440px) {
  .jumbo .jumbo-media {
    height: 470px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .container-fluid {
    margin-left: 24px;
    margin-right: 24px;
  }

  .jumbo-content {
    margin-left: 0;
    width: 100%;
  }

  .col-content {
    width: 100%;
    float: none;
  }

  .jumbo-title {
    font-size: 2.2rem;
  }

  .jumbo-body {
    margin-top: 0;
    padding-top: 20px;
  }

  .jumbo-breadcrumb {
    display: none;
  }

  .form-container {
    padding-top: 90px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 797px) {
  .form-container {
    padding-top: 130px;
  }
}

@media (max-width: 767px) {
  .jumbo .jumbo-media {
    aspect-ratio: 16 / 9;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
    margin-top: 1rem;
  }

  .btn-cookie {
    flex: 1;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    max-width: 100%;
    padding: 1.5rem;
    min-height: 400px; /* Adjusted for smaller screens */
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
    padding-left: 1rem;
  }

  .hero-title::before {
    width: 4px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .logo a span:first-child img {
    height: 24px;
  }

  .sponsor-logo {
    max-width: 100px;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .container-fluid {
    margin-left: 13px;
    margin-right: 13px;
  }

  .row {
    margin-left: -7px;
    margin-right: -7px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .jumbo-content,
  .jumbo-col,
  .col-content {
    padding-left: 7px;
    padding-right: 7px;
  }

  .jumbo-title {
    font-size: 2rem;
    padding-left: 1rem;
  }

  .jumbo-title::before {
    width: 4px;
  }

  .aperture-left {
    padding: 1.5rem;
  }

  .footer-links {
    gap: 2rem;
  }

  .sponsors {
    gap: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .checkbox-options {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }

  .checkbox-text {
    white-space: normal;
  }

  .legal-section {
    padding: 60px 0;
  }

  .legal-heading h2 {
    margin-bottom: 60px;
  }

  .legal-item p {
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .aperture-left {
    padding: 0;
  }

  .container {
    padding: 0 0.5rem;
  }

  .jumbo-title {
    font-size: 1.8rem;
  }

  .form-container {
    padding-top: 50px;
  }

  .form-intro {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .form-intro p {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
    min-height: 350px;
  }

  .service-card h2 {
    font-size: 1.5rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-card .disclaimer {
    font-size: 0.8rem;
  }

  .mobile-menu {
    width: 100%;
  }

  .mobile-menu-item {
    font-size: 1.1rem;
    padding: 1rem 0;
  }

  .sponsors {
    gap: 1.5rem;
  }

  .sponsor-logo {
    max-width: 80px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .jumbo-content {
    padding-top: 0;
  }

  .checkbox-label {
    font-size: 0.8rem;
  }

  .cookie-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-cookie {
    width: 100%;
  }

  .footer-disclaimer p {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}

@media (max-width: 360px) {
  .checkbox-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 322px) {
  .form-container {
    padding-top: 100px;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Animation keyframes */
@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
