﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.current-date {
    text-align: center;
    margin-bottom: 40px;
    color: #888;
    font-style: italic;
}

h2 {
    font-size: 1.5em;
    margin: 30px 0 15px 0;
    color: #000;
}

p {
    margin-bottom: 15px;
}

strong {
    font-weight: 600;
}

ul,
ol {
    margin: 15px 0;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

section,
.section {
    margin-bottom: 35px;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.contact-info h2 {
    margin-top: 0;
}

.home-button {
    display: block;
    width: 200px;
    margin: 50px auto 20px;
    padding: 12px 24px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.home-button:hover {
    background-color: #333;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.table-container {
    overflow-x: auto;
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1.5rem 0;
  width: 100%;
}

.table th, 
.table td {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
}

.table th {
  background-color: #f9f9f9;
  font-weight: 600;
  text-align: left;
}
