/* General Body Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #495057;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #004d40; /* Deep Green from KTCHRC branding */
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.logo {
    max-width: 100px;
    margin-bottom: 20px;
}

.header h1 {
    font-family: 'Lora', serif;
    margin: 0;
    font-size: 2.8rem;
    font-weight: 700;
}

.header .subtitle {
    font-size: 1.1rem;
    margin: 10px 0 0;
    opacity: 0.9;
}

/* Main Content Styles */
.main-content {
    padding: 50px 0;
}

.policy-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.effective-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-align: right;
    font-style: italic;
}

.policy-card h2 {
    font-family: 'Lora', serif;
    color: #004d40; /* Deep Green */
    font-size: 1.9rem;
    font-weight: 600;
    margin-top: 35px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.policy-card ul {
    list-style-type: none;
    padding-left: 0;
}

.policy-card ul li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.policy-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37; /* Gold/Yellow from KTCHRC branding */
    font-size: 1.5rem;
    line-height: 1;
}

.contact-info li::before {
    content: '›';
    font-weight: bold;
    color: #004d40; /* Deep Green */
}

a {
    color: #004d40; /* Deep Green */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #d4af37; /* Gold/Yellow on hover */
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #343a40;
}

/* Footer Styles */
.footer {
    background-color: #343a40;
    color: #f8f9fa;
    text-align: center;
    padding: 25px 0;
    margin-top: 50px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }

    .policy-card {
        padding: 30px;
    }

    .policy-card h2 {
        font-size: 1.6rem;
    }
}
