/* Policy Pages Common Styles */
.policy-container {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.policy-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #d00000; /* Red Theme */
}

.policy-content {
    color: #444;
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.4rem;
    color: #222;
    margin: 35px 0 15px;
    font-weight: 700;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

/* About Us Specific */
.about-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .policy-container {
        padding: 40px 20px;
    }
    .policy-header h1 {
        font-size: 1.8rem;
    }
}
