@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&family=Montserrat:wght@600&display=swap');

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f7f9;
    color: #333;
}

/* Container for content */
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px 30px 30px 30px;

    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #007bff; 
}

header img {
    margin-right: 15px;
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 2.2em;
    margin: 0;
}

/* Paragraphs and Text */
p {
    margin-bottom: 20px;
}

/* Service List Styles */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.service-list li {
    background-color: #e9f0f6;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.service-list li:hover {
    background-color: #dbe4ee;
}

.service-list li a {
    text-decoration: none;
    color: #0056b3; /* A darker blue for links */
    font-weight: 600;
}

.service-list li a:last-child {
    font-weight: 400;
    font-size: 0.9em;
    color: #666; /* Sub-link is lighter */
    margin-left: 10px;
}

/* Availability Section */
.status-links a {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
}

/* Footer/Call to Action */
footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

footer h4 {
    font-size: 1.2em;
    margin: 0 0 10px 0;
}

footer a {
    font-weight: 700;
    text-decoration: none;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 12px 16px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  transition: background 0.2s, box-shadow 0.2s;
}

.service-list li:hover {
  background: #f7f7f7;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.service-info {
  flex: 1;
}

.service-info b {
  font-size: 1.05em;
}

.service-info p {
  color: gray;
  margin: 4px 0 0 0;
  font-size: 0.9em;
}

.source-btn {
  background: #e0e0e0;
  color: #333;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.2s;
}

.source-btn:hover {
  background: #d0d0d0;
}