/* Base Styles */
:root {
  --primary: #D4AF37;
  --secondary: #0F4C75;
  --accent: #E94B3C;
  --background: #F8F3E6;
  --text: #333333;
  --highlight: #2D4263;
  --light: #FFFFFF;
  --dark: #1A1A1A;
  --padding-section: 4rem 0;
  --border-radius: 0.5rem;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary);
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

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

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

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

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

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

.bg-light {
  background-color: var(--light);
}

.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:after {
  width: 100%;
}

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

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

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

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

.btn-outline-secondary {
  color: var(--secondary);
  background-color: transparent;
  border-color: var(--secondary);
}

.btn-outline-secondary:hover {
  color: var(--light);
  background-color: var(--secondary);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(248, 243, 230, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

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

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

.logo img {
  height: 50px;
  margin-right: 1rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.nav-toggle {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--secondary);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.nav-toggle span:nth-child(1) {
  top: 5px;
}

.nav-toggle span:nth-child(2), .nav-toggle span:nth-child(3) {
  top: 15px;
}

.nav-toggle span:nth-child(4) {
  top: 25px;
}

.nav-toggle.active span:nth-child(1) {
  top: 15px;
  width: 0%;
  left: 50%;
}

.nav-toggle.active span:nth-child(2) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-toggle.active span:nth-child(4) {
  top: 15px;
  width: 0%;
  left: 50%;
}

.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
  z-index: 1000;
}

.nav.active {
  right: 0;
}

.nav-list {
  list-style: none;
  text-align: center;
}

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

.nav-link {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover:before,
.nav-link.active:before {
  width: 100%;
}

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

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    background-color: transparent;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
  }

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

  .nav-item {
    margin-bottom: 0;
    margin-left: 2rem;
  }

  .nav-link {
    font-size: 1rem;
  }
}

/* Hero Section */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: var(--light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text);
}

.hero-cta {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    flex: 1;
    padding-right: 2rem;
  }

  .hero-image-container {
    flex: 1;
  }

  .hero-image {
    height: 400px;
    margin-bottom: 0;
  }

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

  .hero-subtitle {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-image {
    height: 450px;
  }
}

/* Circular Focal Points */
.circular-section {
  position: relative;
  padding: var(--padding-section);
  overflow: hidden;
}

.circular-container {
  position: relative;
  z-index: 2;
}

.circular-bg {
  position: absolute;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.circular-content {
  position: relative;
  z-index: 3;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.circular-item {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--light);
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.circular-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.circular-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background-color: rgba(212, 175, 55, 0.1);
  color: var(--primary);
  font-size: 2rem;
  transition: var(--transition);
}

.circular-item:hover .circular-icon {
  background-color: var(--primary);
  color: var(--light);
}

.circular-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

@media (min-width: 768px) {
  .circular-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .circular-item {
    width: calc(50% - 1.5rem);
  }
}

@media (min-width: 992px) {
  .circular-item {
    width: calc(33.333% - 1.5rem);
  }
}

/* Features */
.features {
  padding: var(--padding-section);
  background-color: var(--light);
}

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

.features-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  flex: 1 1 100%;
  background-color: var(--background);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--text);
}

@media (min-width: 768px) {
  .feature-item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media (min-width: 992px) {
  .feature-item {
    flex: 0 0 calc(33.333% - 1.5rem);
  }
}

/* About Section */
.about {
  padding: var(--padding-section);
  background-color: var(--background);
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  text-align: center;
}

.about-title {
  margin-bottom: 1.5rem;
}

.about-description {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .about-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .about-image {
    flex: 0 0 45%;
    margin-bottom: 0;
    margin-right: 5%;
  }

  .about-content {
    flex: 0 0 50%;
    text-align: left;
  }
}

/* Services */
.services {
  padding: var(--padding-section);
  background-color: var(--light);
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: var(--background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

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

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

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-description {
  margin-bottom: 1.5rem;
}

.service-link {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Blog Section */
.blog {
  padding: var(--padding-section);
  background-color: var(--background);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

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

.blog-content {
  padding: 2rem;
}

.blog-date {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: block;
}

.blog-post-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.blog-card:hover .blog-post-title {
  color: var(--primary);
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.blog-link:hover i {
  transform: translateX(5px);
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact Form */
.contact-form-section {
  padding: var(--padding-section);
  background-color: var(--light);
}

.contact-title {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-description {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--background);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background-color: var(--light);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  color: var(--text);
  background-color: var(--light);
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-label {
  margin-bottom: 0;
}

.iti {
  width: 100%;
}

/* Contact Page */
.contact-page {
  padding: var(--padding-section);
  background-color: var(--background);
}

.contact-page-container {
  display: flex;
  flex-direction: column;
}

.contact-info {
  background-color: var(--light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.25rem;
}

.contact-info-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact-page-container {
    flex-direction: row;
  }

  .contact-info {
    flex: 0 0 40%;
    margin-bottom: 0;
    margin-right: 2rem;
  }

  .map-container {
    flex: 0 0 60%;
  }
}

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

.footer-top {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-col {
  flex: 1 1 100%;
  margin-bottom: 2rem;
}

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

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

.footer-about {
  margin-bottom: 1.5rem;
}

.footer-title {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

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

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

.footer-link a {
  color: var(--light);
  transition: var(--transition);
}

.footer-link a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 1rem;
  color: var(--light);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--dark);
  transform: translateY(-5px);
}

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

.footer-bottom p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-bottom-link {
  margin: 0 1rem 1rem;
  font-size: 0.9rem;
  color: var(--light);
  transition: var(--transition);
}

.footer-bottom-link:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .footer-col {
    flex: 0 0 50%;
  }
}

@media (min-width: 992px) {
  .footer-col {
    flex: 1;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: var(--light);
  padding: 1.5rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.show {
  bottom: 0;
}

.cookie-consent-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cookie-consent-text {
  margin-bottom: 1.5rem;
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-settings-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-settings-content {
  width: 100%;
  max-width: 600px;
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-settings-title {
  margin-bottom: 0;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.cookie-settings-close:hover {
  color: var(--primary);
}

.cookie-settings-body {
  margin-bottom: 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.cookie-category-title {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: var(--transition);
  border-radius: 50%;
}

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

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

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

.cookie-category-description {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cookie-settings-footer {
  display: flex;
  justify-content: space-between;
}

.cookie-settings-save,
.cookie-settings-accept-all {
  padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .cookie-consent-container {
    flex-direction: row;
    text-align: left;
  }

  .cookie-consent-text {
    margin-bottom: 0;
    margin-right: 2rem;
  }
}

/* Art Deco Elements */
.art-deco-divider {
  height: 4px;
  background: linear-gradient(to right, var(--light), var(--primary), var(--light));
  margin: 2rem auto;
  width: 80%;
  max-width: 200px;
  border-radius: 2px;
}

.art-deco-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(var(--primary) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
  z-index: 1;
}

.art-deco-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.art-deco-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  border-radius: 1.5px;
}

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

.fade-in {
  animation: fadeIn 1s ease forwards;
}

/* Utility Classes */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 2.5rem; padding-right: 2.5rem; }

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

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.flex-column { flex-direction: column; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.flex-grow-1 { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.shadow-sm { box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); }

.rounded { border-radius: var(--border-radius); }
.rounded-circle { border-radius: 50%; }

.bg-white { background-color: var(--light); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

.text-white { color: var(--light); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Thank You Page */
.thank-you {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0;
  min-height: calc(100vh - 300px);
}

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

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.back-to-home {
  margin-top: 1rem;
}

.back-to-home:hover {
  color: white;
}

/* Legal Pages */
.legal-page {
  padding: 4rem 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--light);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-title {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-last-updated {
  font-style: italic;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text);
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.legal-list {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-list li {
  margin-bottom: 0.5rem;
}