/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Main Container */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Heading */
main h3 {
    font-size: 22px;
    color: #1a73e8;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #1a73e8;
}

/* Section Content */
.content {
    padding: 20px;
}

/* Paragraph Styling */
.content p {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

/* Sub-headings */
.content .sub-heading {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
    margin-top: 20px;
}

/* Lists */
.content ul, .content ol {
    padding-left: 20px;
}

.content ul li, .content ol li {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Bold Text */
.content b {
    color: #333;
    font-weight: 600;
}

/* Links */
.content a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

.content a:hover {
    text-decoration: underline;
}
.shipping-Policy{
        justify-items: center;
    font-size: 200%;
}
/* Responsive Design */
@media (max-width: 768px) {
    main {
        padding: 15px;
    }

    .content p, .content ul li, .content ol li {
        font-size: 15px;
    }

    main h3 {
        font-size: 20px;
    }

    .content .sub-heading {
        font-size: 17px;
    }
}
