:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* Location Map Section Styles */
.location-map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.map-wrapper iframe {
  border-radius: 8px;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}

.contact-info-wrapper h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: var(--bodyTextColor);
  line-height: 1.6;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-info-item a {
  color: var(--headerColor);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: var(--secondary);
}

.location-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.location-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.location-buttons .btn i {
  font-size: 1.125rem;
}

/* Responsive Design for Location Map */
@media screen and (max-width: 768px) {
  .location-map-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .map-wrapper {
    height: 350px;
  }

  .contact-info-wrapper h3 {
    font-size: 1.5rem;
  }

  .location-buttons {
    margin-top: 1rem;
  }
}
