/* --- Base and Accessibility Styles --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

/* Ensure focus is visible for keyboard users */
:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* High contrast for readability */
.site-header, .site-footer {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 1rem;
}

/* --- Responsive Navigation --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
}



/* --- Responsive Image and Layouts --- */
img {
    max-width: 100%;
    height: auto; /* Maintains aspect ratio */
}

.services-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr; /* Default to single column on small screens */
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on larger screens */
    }
}

table {
  width: 96%; /* Sets the table width to 80% of its parent container */
  background-color  : ;
  border-collapse: collapse; /* Collapses adjacent cell borders into a single border */
  border: 2px solid #333; /* Adds a 2px solid border around the entire table */
}

th, td {
  width: 19%;
  border: 1px solid #ccc; /* Adds a 1px solid border to individual header and data cells */
  padding: 8px; /* Adds padding inside cells for readability */
  text-align: center; /* Aligns text to the left within cells */
}