/* Container styling */
.privacy-container {
    padding: 40px 0;
}

/* Centered Page Title */
.title-container {
    text-align: center;
    margin-bottom: 20px;
}

.privacy-page-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

/* Top Section with Flex Layout */
.top-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.left-section-text {
    flex: 1 1 60%;
    font-size: 1rem;
    color: #555;
    margin-left: 60px;
    margin-right: 60px;
}
/* Styling for the highlighted text */
.highlight {
    font-weight: bold;
    color: #8E6800;
}
.right-section-image {
    flex: 1 1 35%;
    text-align: center;
}

.privacy-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Divider Line */
.divider-line {
    width: 100%;
    height: 2px;
    background-color: #8E6800;
    margin: 30px 0;
}

/* Bottom Section with Flex Layout */
.bottom-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-box {
    flex: 1 1 45%;
    background-color : #bed1e4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Sub-Box Styles */
.sub-box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.sub-box h4 {
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
}

.sub-box p {
    font-size: 1em;
    color: #555;
}

/* Responsive Layout for Small Screens */
@media (max-width: 767px) {
    .top-section,
    .bottom-section {
        flex-direction: column;
        align-items: center;
    }

    .left-section-text,
    .right-section-image,
    .privacy-box {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .divider-line {
        margin: 20px 0;
    }
}
