/* General Style */
body {
    font-family: 'lexend', sans-serif;
    background-color: #fff;
    color: #fffdfd;
    /* margin: 0; */
    padding: 20px;
}

/* banner */
/* Banner styling */

#banner-main{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    background-color: #050f17;

}
.banner1 {
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: #FFFFFF; /* Set text color to pure white */
    background-image: url('../images/banner/5.png');
    background-color: #000; /* Fallback color if image fails to load */
    position: relative; /* Position relative for overlay */
}

/* Overlay for better text visibility */
.banner1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for better contrast */
    z-index: 1;
}

.banner-content {
    position: relative;
    text-align: center;
    z-index: 2; /* Ensures content is above the overlay */
}

/* Heading styling */
.banner-bread {
    color: #fff; /* Keep breadcrumb links white */
}

.banner h2 {
    color: #FFFFFF; /* Set heading color to pure white */
    font-family: "Italiana", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.3em;
}

/* Breadcrumb styling */
.banner p {
    font-size: 14px; /* Set font size to 14px */
    font-family: 'Lexend', sans-serif; /* Lexend font for breadcrumbs */
    margin: 10px 0 0; /* Space below the heading */
}

/* Links inside the breadcrumbs */
.banner p a {
    color: #FFFFFF; /* Set breadcrumb link color to pure white */
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
}

/* Hover effect for links */
.banner p a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #A8894D; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 300px; /* Reduce height for smaller screens */
    }

    .banner h1 {
        font-size: 36px; /* Smaller font for mobile */
    }

    .banner p {
        font-size: 12px; /* Adjust breadcrumb text size on smaller screens */
    }
}


/* end banner */

/* General container for privacy policy content */

.p{
    max-width: 1200px !important;
}
.privacy-container {
    width: 100%; /* Full width of the container */
    margin: 0 auto;
    padding: 0; /* Remove padding */
    line-height: 1.6;
}

/* Title Styling */
.privacy-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 40px;
    padding: 0 10px; /* Add slight padding for small screens */
}

/* Company title */
.company-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Intro text styling */
.intro-text {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 0 10px;
    max-width: 1200px;
}

/* Section headings */
.section-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0 10px;
}

/* Section content */
.section-text {
    font-size: 1em;
    margin-bottom: 15px;
    padding: 0 10px;
    max-width: 1200px;
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 2em;
    }
    .section-title {
        font-size: 1.2em;
    }
    .company-title {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 1.8em;
    }
    .section-title {
        font-size: 1.1em;
    }
    .company-title {
        font-size: 1em;
    }
}
