/* Policy Styles */
.section {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 20px;
    text-align: justify;
}

.section-heading h4 {
    font-size: 24px;
    color: #f26651;
    margin-bottom: 10px;
}

.section-heading p {
    font-size: 16px;
    color: #555;
}

/* Content Styles */
.content h5 {
    font-size: 20px;
    color: #f26651;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.content ul {
    margin: 10px 10px 20px 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.content ul li strong {
    color: #333;
}

.content a {
    color: #0056b3;
    text-decoration: none;
}

.content a:hover {
    color: #f26651;
    text-decoration: underline;
}

/* Contact Section */
.content ul li:last-child {
    margin-bottom: 10px;
}

.content p:last-child {
    margin-bottom: 10px;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .section-heading h4 {
        font-size: 20px;
    }

    .content h5 {
        font-size: 18px;
    }

    .content p,
    .content ul li {
        font-size: 14px;
    }
}