/* Privacy Policy Page Styles */
.privacy-policy {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Elegant shadow for depth */
    margin: 0 auto; /* Center the section */
    max-width: 1200px; /* Limit the width for better readability */
    font-family: 'Arial', sans-serif;
}

/* Heading Styles */
.privacy-policy h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.privacy-policy h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f39c12;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-policy p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify; /* Justifies the text */
    text-justify: inter-word; /* Distributes word spacing evenly */
    hyphens: auto; /* Ensures proper word breaks */
}

.privacy-policy ul {
    list-style: none;
    margin-left: 20px;
    padding-left: 20px;
    font-size: 1.1rem;
}

.privacy-policy ul li {
    margin: 8px 0;
    line-height: 1.6;
}

.privacy-policy strong {
    font-weight: 700;
}

/* Links with Hover Effects */
.privacy-policy a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.privacy-policy a:hover {
    color: #f39c12;
    text-decoration: underline;
}
/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto; /* Reset the margin for proper centering */
    padding: 20px 15px; /* Add padding for responsiveness */
    flex-grow: 1;
}
/* Hero Section Custom Styling (Optional) */
.slider {
    height: 50vh;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .slide-content h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .privacy-policy {
        padding: 20px;
    }

    .privacy-policy h2 {
        font-size: 2rem;
    }

    .privacy-policy p {
        font-size: 1rem;
    }

    .privacy-policy h3 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .privacy-policy {
        padding: 15px;
    }

    .privacy-policy h2 {
        font-size: 1.8rem;
    }

    .privacy-policy p {
        font-size: 0.95rem;
    }

    .privacy-policy h3 {
        font-size: 1.4rem;
    }
}