body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #1a1a1a;
}

.container {

    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-title {
    font-size: 3rem;
    font-weight: bold;
    color: #c41e3a;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 1.1rem;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.section {
    margin-bottom: 35px;
}

.section h2 {
    color: #c41e3a;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5aa0;
}

.section h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.section ul {
    margin-bottom: 15px;
    padding-left: 30px;
}

.section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.highlight-box {
    background-color: #f8f9ff;
    border-left: 4px solid #2c5aa0;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.important-notice {
    background-color: #fff5f5;
    border-left: 4px solid #c41e3a;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.contact-info {
    background-color: #f0f8f0;
    border: 2px solid #c8e6c9;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
}

.contact-info h3 {
    color: #2e7d32;
    margin-bottom: 15px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
}

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

.data-table th {
    background-color: #f8f9fa;
    color: #2c5aa0;
    font-weight: bold;
}

.data-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

strong {
    color: #2c5aa0;
}

a {
    color: #2c5aa0;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c41e3a;
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background-color: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #c41e3a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .content {
        padding: 25px;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
}
