:root {
    --primary-color: #2c3e50;
    --accent-color: #e67e22;
    --bg-color: #f4f7f6;
    --border-radius: 12px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* --- SECTION GIỚI THIỆU --- */
.section-gioithieu {
    background: white;
    padding: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    margin-bottom: 40px;
}
.section-gioithieu h1 {
    margin-top: 0;
	margin-bottom: 5px;
    color: #0ea3f0;
}
.section-gioithieu p {
	margin: 2px;
}
.social-links a {
    font-size: 24px;
    margin: 0 15px;
    color: var(--primary-color);
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--accent-color);
}
.donate-info {
    background: #fff3e0;
    padding: 5px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: #d35400;
    border: 1px dashed var(--accent-color);
}
.donate-info a{
	color: #d35400;
}
/* --- SECTION QUY HOẠCH --- */
.section-quyhoach {
    margin-top: 20px;
}
.section-title {
    text-align: center;
    font-size: 28px;
    color: #0ea3f0;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Grid System: 7 items/row trên Desktop */
.quyhoach-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
}
.quyhoach-item {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.quyhoach-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}
.quyhoach-img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-bottom: 1px solid #eee;
}
.quyhoach-name {
    padding: 10px;
    font-size: 13px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
	text-transform: uppercase;
}
/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .quyhoach-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .quyhoach-grid { grid-template-columns: repeat(3, 1fr); }
    .section-gioithieu { padding: 20px; }
}
@media (max-width: 480px) {
    .quyhoach-grid { grid-template-columns: repeat(2, 1fr); }
    .quyhoach-img { height: 100px; }
    .quyhoach-name { font-size: 11px; }
}