body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    background: #fff;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.hero-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sections {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 20px;
}

.info-section {
    background-color: #e3f2fd; /* Blue background restored */
    border-radius: 8px;
    flex: 1;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;   /* Ensures text & content are centered */
}

.info-section img {
    width: auto;          /* Prevents the image from stretching */
    max-width: 150px;     /* Consistent image size */
    display: block;       /* Ensures proper spacing */
    margin: 0 auto 10px;  /* Centers the image */
    border-radius: 8px;   /* Clean design */
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0047AB;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
}

.footer {
    margin-top: 30px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sections {
        flex-direction: column;
        gap: 15px;
    }

    .hero-image {
        max-height: 200px;
    }

    .info-section img {
        width: 60%;
        max-width: 100px;
    }
}

/* Privacy Policy Page Styling */
.privacy-container {
    background: #fff;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    margin: 40px auto;
    text-align: left;
    line-height: 1.8;
}

.privacy-container h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.privacy-container p {
    color: #333;
    margin-bottom: 20px;
}

.privacy-container h2 {
    font-size: 20px;
    margin-top: 30px;
}

.privacy-container ul {
    padding-left: 20px;
}

.privacy-container ul li {
    margin-bottom: 8px;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0047AB;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
}