: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 Section Styles */
.location__container {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
}

.location__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.location__map iframe {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location__info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ca0000;
}

.location__details {
  flex-grow: 1;
}

.location__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location__item i {
  font-size: 1.5rem;
  color: #ca0000;
  margin-top: 0.25rem;
}

.location__item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.location__item p {
  margin: 0;
  line-height: 1.6;
}

.location__item a {
  color: #333;
  text-decoration: none;
}

.location__item a:hover {
  color: #ca0000;
}

.location__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.location__buttons .btn {
  flex: 1;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #ca0000;
  color: white;
}

.btn-primary:hover {
  background-color: #a00000;
}

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

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

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

  .location__buttons {
    flex-direction: column;
  }

  .location__buttons .btn {
    width: 100%;
  }
}
