/* ================ */
/* BASE STYLES */
/* ================ */
:root {
  --primary-color: #182942;
  --primary-accent: #ebd19e;
  --primary-dark: #0f1b2e;
  --primary-light: #223558;
  --secondary-blue-1: #314769;
  --secondary-blue-2: #384c69;
  --secondary-blue-3: #405069;
  --secondary-blue-4: #475568;
  --secondary-blue-5: #4e5968;
  --gray-1: #535353;
  --gray-2: #717171;
  --gray-3: #8e8e8e;
  --gray-4: #ababab;
  --gray-5: #c9c9c9;
  --light-1: #d2d2d2;
  --light-2: #dddddd;
  --light-3: #e9e9e9;
  --light-4: #f4f4f4;
  --light-5: #ffffff;
  --heading-font: 'Hoefler Text', serif;
  --body-font: 'Montserrat', sans-serif;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --bg-light: #f9f9f9;
  --bg-dark: #1a1a1a;
  --white: #fff;
  --black: #000;
  --success-color: #28a745;
  --error-color: #e74c3c;
  --warning-color: #ffc107;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main#main-content {
  padding-top: var(--header-height);
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.text-center {
  text-align: center;
}

/* ================ */
/* UTILITY CLASSES */
/* ================ */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-5);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--primary-accent); /* New text color on hover */
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}


.btn-secondary {
  background-color: var(--primary-accent);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: #e0c58a;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* ================ */
/* HEADER & NAVIGATION */
/* ================ */
#header {
  background: var(--light-5);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s;
}

#header.sticky {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(24, 41, 66, 0.8), rgba(24, 41, 66, 0.8)), 
              url('https://i.pinimg.com/1200x/4c/8c/43/4c8c43bc9eed1ba7b7555c5d60b79ad6.jpg') no-repeat center center/cover;
  color: var(--white);
  text-align: center;
  padding-top: var(--header-height);
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 767px){
  .header-container {
    padding: 15px 0 15px 15px;
  }
}

.logo a {
  display: inline-block;
}

.logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  transition: var(--transition);
}

#header.sticky .logo img {
  max-height: 50px;
}

/* ================ */
/* DROPDOWN MENU STYLES */
/* ================ */
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
  position: relative;
}

nav ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 5px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--primary-accent);
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: top center;
  transform: scaleY(0);
}

.dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  transform: scaleY(1);
}

/* Desktop-specific dropdown styles */
@media (min-width: 768px) {
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: var(--light-5);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 0.5rem 0;
    z-index: 1000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease, visibility 0s linear 0.3s;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .dropdown-menu li {
    padding: 0;
    border-bottom: none;
    position: relative;
  }

  .dropdown-menu li a {
    display: block;
    padding: 0.8rem 1.5rem 0.8rem 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
  }

  .dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .dropdown-menu li a:hover::before {
    opacity: 1;
  }

  .dropdown-menu li a:hover {
    background: rgba(235, 209, 158, 0.1);
    color: var(--primary-accent);
    padding-left: 2.2rem;
  }

  .dropdown-toggle i {
    transition: transform 0.3s ease;
    margin-left: 5px;
  }

  .dropdown:hover .dropdown-toggle i,
  .dropdown:focus-within .dropdown-toggle i,
  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-toggle:focus {
    outline: 2px solid var(--primary-accent);
    outline-offset: 2px;
  }
}

/* ================ */
/* MOBILE MENU STYLES */
/* ================ */
@media (max-width: 767px) {
  nav ul {
    display: none;
  }

  #navMenu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background: var(--light-5);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    padding: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
  }

  #navMenu.active {
    right: 0;
  }

  #navMenu > li {
    margin: 0;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  #navMenu > li:last-child {
    border-bottom: none;
  }

  #navMenu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--primary-color);
  }

  .dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    overflow: hidden;
    transition: none !important;
    pointer-events: none;
    position: static;
    width: 100%;
    box-shadow: none;
    background: transparent;
  }

  .dropdown.active .dropdown-menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 500px !important;
    padding: 0.5rem 0 0 1rem !important;
    margin: 0.5rem 0 0 !important;
    border-left: 2px solid var(--primary-accent) !important;
    transition: all 0.3s ease !important;
    pointer-events: auto;
  }

  .dropdown-menu li {
    height: auto !important;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu li a {
    color: var(--gray-2);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: block;
  }

  .dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
  }

  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  body.menu-open::after {
    content: '';
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
}

/* ================ */
/* MOBILE MENU BUTTON */
/* ================ */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn .menu-icon {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  position: relative;
  transition: var(--transition);
}

.mobile-menu-btn .menu-icon::before,
.mobile-menu-btn .menu-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  left: 0;
  transition: var(--transition);
}

.mobile-menu-btn .menu-icon::before {
  top: -8px;
}

.mobile-menu-btn .menu-icon::after {
  bottom: -8px;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon {
  transform: rotate(45deg);
  background-color: transparent;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: block;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 0.8rem;
  z-index: 1001;
  transition: var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ================ */
/* TESTIMONIALS */
/* ================ */

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.testimonial-content {
  position: relative;
  margin-bottom: 1.5rem;
}

.testimonial-content i {
  font-size: 2rem;
  color: var(--primary-accent);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 0;
}

.testimonial-content p {
  font-style: italic;
  color: var(--text-light);
}

.testimonial-author {
  font-weight: 500;
}

.author-title {
  color: var(--text-light);
  font-size: 0.9rem;
}


/* ================ */
/* FOOTER */
/* ================ */
.footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 3rem 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), var(--primary-light), var(--primary-accent));
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-column {
  position: relative;
  padding-bottom: 1rem;
}

.footer-column h3 {
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: var(--body-font);
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: rgba(235, 209, 158, 0.5);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background-color: var(--primary-accent);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.95rem;
  display: inline-block;
  padding: 0.3rem 0;
  position: relative;
}

.footer-column ul li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-accent);
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-column ul li a:hover::before {
  width: 15px;
}

.newsletter-form {
  margin-top: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-family: inherit;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-accent);
  background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.85rem;
  position: relative;
}

.footer-links a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -0.9rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-links a:hover {
  color: var(--primary-accent);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 2rem 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    padding-bottom: 1.5rem;
  }
  
  .footer-column:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a:not(:last-child)::after {
    display: none;
  }
}

/* ================ */
/* BACK TO TOP BUTTON */
/* ================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-accent);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #e0c58a;
  transform: translateY(-5px);
}

/* ================ */
/* RESPONSIVE STYLES */
/* ================ */
@media (max-width: 768px) {
  #header {
    padding: 15px 0;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 3rem 0;
  }
}

/* ========================================= */
/* TERMS OF SERVICE */
/* ========================================= */
.tm-header-container {
  position: relative;
  margin-bottom: 60px;
}

.tm-section-header.tm-centered-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1rem 6rem; /* extra bottom padding for image space */
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  color: var(--light-5);
  position: relative;
  overflow: visible;
  z-index: 1;
}

.tm-section-header.tm-centered-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Crect fill='%23c9a769' fill-opacity='0.03' width='50' height='50' x='50' y='50'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.tm-section-header h1 {
  font-size: 2.5rem;
  color: var(--primary-accent);
  margin-bottom: 10px;
}

.tm-header-subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: block;
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================= */
/* COMMENTED OUT UNUSED STYLES (FOR REFERENCE) */
/* ========================================= */

/*



.services-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--light-5);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(24, 41, 66, 0.08);
  transition: var(--transition);
  border-top: 4px solid var(--primary-accent);
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(24, 41, 66, 0.03) 0%, rgba(235, 209, 158, 0.03) 100%);
  z-index: -1;
}

.service-icon {
  padding: 2rem 2rem 0;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--primary-accent);
  background: rgba(24, 41, 66, 0.1);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-content {
  padding: 0 2rem 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 500;
  transition: var(--transition);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text .lead {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.5;
}

.about-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.attorneys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.attorney-card {
  background: var(--light-5);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
  border-top: 3px solid var(--primary-accent);
}

.attorney-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 1.5rem;
}

.attorney-title {
  color: var(--primary-accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.attorney-bio {
  color: var(--gray-2);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-accent);
  margin-top: 0.3rem;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.map-container {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  position: relative;
}

.map-container::after {
  content: "Our Office";
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 1;
}
*/