/* Base Styles */
:root {
  --primary-orange: #E8846B;
  --primary-teal: #2A9D8F;
  --primary-cream: #F4F1DE;
  --secondary-blue: #264653;
  --secondary-yellow: #E9C46A;
  --bg-light-cream: #FAF9F6;
  --bg-off-white: #FDFCF7;
  --accent-red: #D85C50;
  --accent-dark-teal: #1D6E64;
  --text-dark: #2D3142;
  --text-medium: #6B717E;
  --text-light: #979DAC;
  --font-heading: 'Crimson Text', serif;
  --font-body: 'Lato', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.5rem);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--accent-dark-teal);
  text-decoration: underline;
}

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

button, .btn {
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--accent-dark-teal);
  text-decoration: none;
}

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

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--accent-red);
  text-decoration: none;
}

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

.btn-outline:hover, .btn-outline:focus {
  background-color: var(--primary-teal);
  color: white;
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Layout */
.section {
  padding: 4rem 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 2rem;
}

.mt-4 {
  margin-top: 3rem;
}

.py-1 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-4 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-1 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.px-4 {
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Header */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

/* Navigation */
.nav-toggle {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-teal);
}

.nav-link.active {
  color: var(--primary-teal);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-teal);
}


.close-menu {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-item {
    margin: 1rem 0;
    width: 100%;
  }
  
  .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
  }
  
  .overlay.active {
    display: block;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-color: var(--bg-off-white);
  overflow: hidden;
}

.hero-content {
  grid-column: 1 / 7;
  position: relative;
  z-index: 2;
}

.hero-image {
  grid-column: 7 / 13;
  position: relative;
}

.hero-image img {
  border-radius: 0.5rem;
  box-shadow: 20px 20px 0 rgba(42, 157, 143, 0.2);
}

.hero-shape {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: 40%;
  height: 70%;
  background-color: var(--primary-orange);
  opacity: 0.1;
  z-index: 1;
  transform: rotate(-15deg);
}

/* Broken Grid Layout */
.broken-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.grid-item {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: fit-content;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.grid-item-1 {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.grid-item-2 {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
}

.grid-item-3 {
  grid-column: 7 / 10;
  grid-row: 2 / 4;
}

.grid-item-4 {
  grid-column: 10 / 13;
  grid-row: 2 / 4;
}

.grid-item-5 {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.grid-item-6 {
  grid-column: 5 / 7;
  grid-row: 3 / 4;
}

.grid-content {
  padding: 1.5rem;
}

.grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .broken-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .grid-item-1 {
    grid-column: 1 / 7;
    grid-row: auto;
  }
  
  .grid-item-2 {
    grid-column: 1 / 7;
    grid-row: auto;
  }
  
  .grid-item-3 {
    grid-column: 1 / 4;
    grid-row: auto;
  }
  
  .grid-item-4 {
    grid-column: 4 / 7;
    grid-row: auto;
  }
  
  .grid-item-5 {
    grid-column: 1 / 4;
    grid-row: auto;
  }
  
  .grid-item-6 {
    grid-column: 4 / 7;
    grid-row: auto;
  }
}

@media (max-width: 576px) {
  .broken-grid {
    grid-template-columns: 1fr;
  }
  
  .grid-item-1, .grid-item-2, .grid-item-3, .grid-item-4, .grid-item-5, .grid-item-6 {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Features */
.features {
  padding: 5rem 0;
  background-color: var(--bg-off-white);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2rem 0;
}

.feature-item {
  flex: 0 0 calc(33.333% - 2rem);
  margin-bottom: 3rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-cream);
  color: var(--primary-teal);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .feature-item {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 576px) {
  .feature-item {
    flex: 0 0 100%;
  }
}

/* About Section */
.about {
  padding: 5rem 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-text {
  flex: 0 0 50%;
  padding-right: 3rem;
}

.about-image {
  flex: 0 0 50%;
  position: relative;
}

.about-image img {
  border-radius: 0.5rem;
  box-shadow: 20px 20px 0 rgba(232, 132, 107, 0.2);
}

@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    flex: 0 0 100%;
  }
  
  .about-text {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--bg-off-white);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem -1rem;
}

.service-card {
  flex: 0 0 calc(33.333% - 2rem);
  margin: 0 1rem 2rem;
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .service-card {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 576px) {
  .service-card {
    flex: 0 0 100%;
    margin: 0 0 2rem;
  }
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonial-slider {
  position: relative;
  margin: 3rem 0;
}

.testimonial-item {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 0 1rem;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background-color: var(--primary-teal);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta .btn {
  margin: 0 0.5rem;
}

/* Contact Form */
.contact-form {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

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

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.form-check {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

/* Contact Info */
.contact-info {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-cream);
  color: var(--primary-teal);
  border-radius: 50%;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.map-container {
  height: 400px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 2rem;
}

/* News/Blog */
.news {
  padding: 5rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.news-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-image {
  height: 200px;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  padding: 1.5rem;
}

.news-date {
  color: var(--text-medium);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background-color: var(--secondary-blue);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  flex: 0 0 calc(25% - 2rem);
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-teal);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-link a:hover, .footer-link a:focus {
  color: white;
}

.footer-contact p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 0.75rem;
  color: var(--primary-teal);
}

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

.footer-bottom p {
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .footer-column {
    flex: 0 0 calc(50% - 2rem);
  }
}

@media (max-width: 576px) {
  .footer-column {
    flex: 0 0 100%;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin-right: 2rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-settings {
  margin-top: 1rem;
  display: none;
}

.cookie-category {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 600;
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-teal);
}

input:focus + .toggle-slider {
  box-shadow: 0 0 1px var(--primary-teal);
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

/* Thank You Page */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 2rem;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--primary-teal);
  margin-bottom: 2rem;
}

.thank-you h1 {
  margin-bottom: 1rem;
}

.thank-you p {
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Miscellaneous */
.divider {
  width: 80px;
  height: 4px;
  background-color: var(--primary-teal);
  margin: 2rem auto;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 3px;
  background-color: var(--primary-teal);
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* Intl Tel Input Override */
.iti {
  width: 100%;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-medium);
}

/* Privacy Policy & Terms */
.policy-section {
  padding: 5rem 0;
}

.policy-content {
  background-color: white;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul, .policy-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-date {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-style: italic;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Broken Grid Layout for News */
.news-broken-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.news-broken-grid .news-card:nth-child(1) {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.news-broken-grid .news-card:nth-child(2) {
  grid-column: 7 / 13;
  grid-row: 1 / 2;
}

.news-broken-grid .news-card:nth-child(3) {
  grid-column: 7 / 13;
  grid-row: 2 / 3;
}

@media (max-width: 992px) {
  .news-broken-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .news-broken-grid .news-card:nth-child(1),
  .news-broken-grid .news-card:nth-child(2),
  .news-broken-grid .news-card:nth-child(3) {
    grid-column: 1 / 7;
    grid-row: auto;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 4rem 0;
  }
  
  .hero-content, .hero-image {
    grid-column: 1 / 13;
  }
  
  .hero-content {
    margin-bottom: 2rem;
  }
  
  .contact-form, .contact-info {
    margin-bottom: 2rem;
  }
  
  .grid {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .cta {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .cta .btn {
    margin: 0 0 1rem;
  }
  
  .cookie-buttons {
    margin-top: 1rem;
  }
  
  .footer {
    padding: 3rem 0 1.5rem;
  }
}