: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 Container Styles */
.location-map-container {
  padding: 4rem 1rem;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.map-column {
  width: 100%;
}

.map-container {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.info-column {
  width: 100%;
  display: flex;
  align-items: center;
}

.contact-info-box {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.contact-info-box h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--primaryLight);
  padding-bottom: 0.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primaryLight);
  margin-top: 0.2rem;
}

.info-item strong {
  display: block;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 0.25rem;
}

.info-item a {
  color: var(--primaryLight);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: var(--headerColor);
}

.action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.action-buttons .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0.875rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.delivery-note {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--primaryLight);
}

.delivery-note h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--headerColor);
  margin-bottom: 1rem;
}

.delivery-note p {
  line-height: 1.8;
  color: var(--bodyTextColor);
}

.delivery-note strong {
  color: var(--headerColor);
  font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .location-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .map-container {
    height: 350px;
  }

  .contact-info-box {
    padding: 1.5rem;
  }

  .action-buttons {
    flex-direction: column;
  }

  .action-buttons .btn {
    width: 100%;
  }
}
