﻿/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  background-color: #f5f9ff;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, #004aad, #007bff);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  border-bottom: 5px solid #003c8f;
}

.site-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.site-header p {
  font-size: 1.2rem;
}

/* Sections */
section {
  margin: 40px 0;
}

h2 {
  color: #004aad;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: #fff;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

table th, table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

table th {
  background-color: #004aad;
  color: #fff;
}

table tr:nth-child(even) {
  background-color: #f2f6fc;
}

/* Buttons */
button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

button:hover {
  background-color: #0056b3;
}

/* Footer */
.site-footer {
  background-color: #003c8f;
  color: #fff;
  padding: 30px 20px;
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 15px;
}
