.bordered-box {
  position: relative;
  background: #fff;
  padding: 30px;
  margin: 40px auto;
  width: 1200px; /* Fixed width for large screens */
  max-width: 95%; /* Makes it responsive on smaller screens */
  border: 3px solid #007bff; /* Blue outer border */
  border-radius: 12px;
  box-shadow: 
    0 0 0 6px #ff4d4d, 
    0 0 0 12px #00000022; /* Layered red + subtle gray */
  transition: all 0.3s ease-in-out;
}

.bordered-box:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 0 0 6px #ff4d4d, 
    0 0 0 12px #007bff99, 
    0 5px 20px rgba(0,0,0,0.2);
}

/* Heading */
.bordered-box h3 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff4d4d;
  display: inline-block;
  padding-bottom: 5px;
}

/* Text */
.bordered-box p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Highlight labels */
.bordered-box b {
  color: #ff4d4d;
}

/* Map */
.bordered-box .map-container iframe {
  border-radius: 10px;
  margin-top: 15px;
  height: 250px;
  width: 100%;
}

/* Contact links */
.contact-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: #ff4d4d;
  text-decoration: underline;
}
