: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 {
  background-color: #f9f9f9;
  padding: 3rem 1rem;
}

.location__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media (min-width: 768px) {
  .location__wrapper {
    flex-direction: row;
  }
}

.location__map {
  flex: 1;
  min-height: 300px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: 0;
}

@media (min-width: 768px) {
  .location__map iframe {
    border-radius: 12px 0 0 12px;
  }
}

.location__info {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location__details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 1rem;
}

.location__address,
.location__phone {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--bodyTextColor);
  line-height: 1.6;
}

.location__address i,
.location__phone i,
.location__hours i {
  color: #ca0000;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.location__phone a {
  color: var(--bodyTextColor);
  text-decoration: none;
  font-weight: 600;
}

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

.location__hours {
  margin-bottom: 1.5rem;
}

.location__hours p {
  margin: 0.25rem 0;
  color: var(--bodyTextColor);
}

.location__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 480px) {
  .location__buttons {
    flex-direction: row;
  }
}

.location__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.location__btn:not(.location__btn--primary) {
  background-color: #ffffff;
  color: #333333;
  border: 2px solid #333333;
}

.location__btn:not(.location__btn--primary):hover {
  background-color: #333333;
  color: #ffffff;
}

.location__btn--primary {
  background-color: #ca0000;
  color: #ffffff;
  border: 2px solid #ca0000;
}

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