/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --color-primary: #3E6990;
  --color-secondary: #F49E4C;
  --color-accent: #2E4057;
  --color-accent-secondary: #55DDE0;
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F5F7FA;
  --color-text-primary: #333333;
  --color-text-secondary: #6B7280;
  --font-primary: 'Crimson Text', serif;
  --font-secondary: 'Lato', sans-serif;
  --transition-speed: 0.3s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--color-secondary);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

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

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-secondary);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.4s;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

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

.btn-primary:hover {
  background-color: #335a7d;
  color: white;
}

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

.btn-secondary:hover {
  background-color: #e58e3d;
  color: white;
}

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

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

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

.section {
  padding: 80px 0;
}

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

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

.logo {
  height: 50px;
  width: auto;
}

.nav-desktop {
  display: flex;
}

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

.nav-desktop li {
  margin-left: 30px;
}

.nav-desktop a {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-secondary);
  transition: width 0.3s;
}

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

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

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-primary);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: calc(100vh - 80px);
  background-color: var(--color-accent);
  transition: right 0.3s;
  z-index: 999;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile li {
  margin-bottom: 15px;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-secondary);
  font-size: 18px;
  color: white;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile a:hover {
  color: var(--color-secondary);
}

.backdrop {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.backdrop.active {
  display: block;
}

@media (max-width: 992px) {
  .nav-desktop {
    display: none;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-mobile {
    display: block;
  }
  
  .header-container {
    padding: 15px 20px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-split {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.hero-content {
  flex: 1;
  padding: 80px 30px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--color-text-secondary);
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .hero-split {
    flex-direction: column;
  }
  
  .hero-content,
  .hero-image {
    flex: none;
    width: 100%;
  }
  
  .hero-content {
    padding: 60px 20px;
  }
  
  .hero-image {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

/* Features Section */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--color-secondary);
  transition: height 0.3s;
}

.feature-card:hover::before {
  height: 100%;
}

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

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.feature-content {
  flex-grow: 1;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Split Sections */
.split-section {
  display: flex;
  align-items: center;
  margin: 100px 0;
}

.split-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.split-content {
  flex: 1;
  padding: 0 60px;
}

.split-list {
  list-style: none;
  margin: 30px 0;
}

.split-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--color-text-secondary);
}

.split-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-secondary);
}

.split-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .split-section {
    flex-direction: column;
    margin: 60px 0;
  }
  
  .split-reverse {
    flex-direction: column;
  }
  
  .split-image {
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
  
  .split-content {
    width: 100%;
    padding: 0 20px;
  }
}

/* FAQ Section */
.faq-section {
  background-color: var(--color-bg-secondary);
  padding: 100px 0;
}

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

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: white;
  padding: 20px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-accent);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  background-color: white;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 1000px;
}

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

/* Contact Form */
.contact-form-section {
  padding: 100px 0;
}

.contact-form-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
}

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

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

.contact-info-content h4 {
  margin-bottom: 5px;
  color: var(--color-accent);
}

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

.contact-form {
  flex: 1;
  background-color: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s;
}

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

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

.form-check {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 4px;
}

.form-check-label {
  font-size: 14px;
  color: var(--color-text-secondary);
}

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

@media (max-width: 992px) {
  .contact-form-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form {
    width: 100%;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/* International Telephone Input */
.iti {
  width: 100%;
}

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

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-about img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

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

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-icon {
  color: var(--color-secondary);
  margin-right: 10px;
  font-size: 16px;
  margin-top: 4px;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
  margin: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--color-secondary);
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-about {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-accent);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.cookie-consent.show {
  display: block;
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: white;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-settings-header h3 {
  margin: 0;
  color: var(--color-accent);
}

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

.cookie-settings-body {
  padding: 20px;
}

.cookie-category {
  margin-bottom: 30px;
}

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

.cookie-category-title {
  font-weight: 600;
  color: var(--color-accent);
  margin: 0;
}

.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: 0.4s;
  border-radius: 24px;
}

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

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

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

.cookie-category-description {
  color: var(--color-text-secondary);
  margin-bottom: 10px;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.cookie-table th, .cookie-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.cookie-table th {
  color: var(--color-accent);
  font-weight: 600;
}

.cookie-settings-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
}

.modal__container {
  background-color: white;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal__title {
  margin: 0;
  color: var(--color-accent);
}

.modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-secondary);
}

.modal__content {
  margin-bottom: 20px;
}

.modal__btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
}

.modal__btn:hover {
  background-color: #335a7d;
}

/* ESIM Guide Styles */
.esim-guide-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px;
}

.esim-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  background-color: white;
}

.esim-card-header {
  background-color: var(--color-primary);
  color: white;
  padding: 20px;
}

.esim-card-header h3 {
  margin: 0;
  color: white;
}

.esim-card-body {
  padding: 30px;
}

.esim-steps {
  list-style: none;
  counter-reset: step-counter;
  margin: 30px 0;
}

.esim-step {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
  min-height: 50px;
}

.esim-step:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
}

.esim-step-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.esim-tips {
  background-color: rgba(62, 105, 144, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}

.esim-tips h4 {
  color: var(--color-primary);
  margin-top: 0;
}

.esim-image {
  border-radius: 8px;
  overflow: hidden;
  margin: 30px 0;
}

.esim-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Thank You Page Styles */
.thank-you-container {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px 20px;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-secondary);
  margin-bottom: 30px;
  animation: bounce 1s ease infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.thank-you-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.thank-you-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--color-text-secondary);
}

.thank-you-btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: white;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 1.1rem;
  transition: background-color 0.3s;
  text-decoration: none;
}

.thank-you-btn:hover {
  background-color: #335a7d;
  color: white;
}

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

.mb-0 {
  margin-bottom: 0;
}

.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: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.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: 3rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

.animate-slide-left {
  animation: slideInLeft 1s ease;
}

.animate-slide-right {
  animation: slideInRight 1s ease;
}

/* Additional Contact Page Styles */
.map-container {
  height: 400px;
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}