/* Disclaimer Page Styles */
.disclaimer-section {
    display: flex;
    justify-content: center; /* Horizontally center the content */
    background-color: #f9f9f9;
    color: #333;
    padding: 50px 0; /* Keep vertical padding */
}

.disclaimer-section .container {  /* Limit the width of the content */
    width: 100%;       /* Ensure it stretches across the container */
    padding: 0 15px;   /* Add some padding inside the container */
}

.disclaimer-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer-section h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 13px;
    text-align: center;
}

.disclaimer-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;  /* Justify text */
    color: #555;
}

.disclaimer-section a {
    color: #007bff; /* Blue links */
    text-decoration: none;
}

.disclaimer-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .disclaimer-section h2 {
        font-size: 30px;
    }

    .disclaimer-section p {
        font-size: 14px;
    }
}
