/* policy.css */
:root {
    --gray-bg: #f5f5f5;
    --border-radius: 15px;
    --container-width: min(800px, 90%);
    --text-color: #333;
    --primary-color: #ff5a5f;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 1cm;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background-color: var(--gray-bg);
    color: var(--text-color);
    padding: 2rem 0;
}

.policy-container {
     margin: 6rem auto 2rem; /* Thêm margin-top 6rem để tránh header */
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Thêm vào styles.css */
.header-icon {
    height: 40px; /* Điều chỉnh kích thước theo ý muốn */
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 4px;
}

/* Điều chỉnh lại padding cho logo nếu cần */
.logo {
    display: flex;
    align-items: center;
    padding: 5px 0; /* Giảm padding nếu icon quá lớn */
}

.footer-logo {
    margin-bottom: 1rem;
    text-align: center; /* Căn giữa logo */
}

.footer-logo-img {
    width: 500px; /* Kích thước mới - có thể điều chỉnh */
    height: auto; /* Giữ tỉ lệ */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05); /* Hiệu ứng phóng to nhẹ khi hover */
}

.policy-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.policy-header h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.policy-content {
    padding: 1rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 1.5rem;
    }
    
    .policy-content {
        padding: 0.5rem;
    }
}
/* Thêm các style cho heading */
.policy-header h1,
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4 {
    font-weight: bold;
    color: #2c3d3d;/* Màu đỏ */
    margin: 1.5rem 0 1rem;
}

/* Cụ thể cho từng loại heading */
.policy-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.policy-content h1 {
    font-size: 2rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: #2c3d3d;
}

.policy-content h3 {
    font-size: 1.5rem;
}

.policy-content h4 {
    font-size: 1.3rem;
}