body {
 background-color: #DFFAF0;
    color: #333333;
    font-family: Calibri, Arial, Helvetica, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
}

header, footer {
  text-align: center;
  margin-bottom: 20px;
}

h1, h2 {
  color: #2f4f4f;
}

.italic-text {
    font-style: italic; 
    color: #008080;
}

/* Container for document links */
.document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* The Card Style */
.doc-card {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 10px;
    padding: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #24292e;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Hover Effect */
.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: #0366d6;
}

.doc-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #0366d6;
}

.doc-card p {
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    color: #586069;
    line-height: 1.5;
}

/* The "View" Label inside the card */
.view-label {
    font-weight: bold;
    font-size: 0.9rem;
    color: #008080;
    display: flex;
    align-items: center;
}

.view-label::after {
    content: " →";
    margin-left: 5px;
}

.doc-card-container {
    margin-bottom: 20px; 
}
