: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 */
.location-map-container {
  padding: var(--sectionPadding);
  background-color: #f9f9f9;
}

.location-map-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper {
  min-height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.contact-details-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-wrapper h3 {
  font-size: 1.75rem;
  color: var(--headerColor);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.contact-info {
  flex-grow: 1;
}

.contact-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--bodyTextColor);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-info p i {
  color: var(--primaryLight);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.contact-info p strong {
  color: var(--headerColor);
  font-size: 1rem;
}

.contact-info a {
  color: var(--primaryLight);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #e5a33d;
  text-decoration: underline;
}

.location-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.location-buttons .btn {
  flex: 1;
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  text-align: center;
}

.location-buttons .btn i {
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-map-box {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .map-wrapper {
    min-height: 300px;
  }

  .map-wrapper iframe {
    min-height: 300px;
  }

  .contact-details-wrapper {
    padding: 1.5rem;
  }

  .location-buttons {
    flex-direction: column;
  }

  .location-buttons .btn {
    width: 100%;
  }
}
