/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}
h1{
        text-align-last: center;
    font-size: 200%;
}
.return-refund-policy{
    
    justify-self: center;
}
/* Main Section */
main {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

/* Content Box */
.containts {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
    line-height: 1.6;
}

/* Headings */
.containts p strong {
    font-size: 22px;
    color: #1a73e8;
    display: block;
    margin-bottom: 10px;
}

/* Paragraphs */
.containts p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* Highlighted Text */
.containts b {
    color: #ff6600;
}

/* Lists */
.containts ul {
    list-style: none;
    padding: 0;
}

.containts ul li {
    background: #eaf3ff;
    margin: 8px 0;
    padding: 10px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.containts ul li::before {
    content: "✔";
    color: #1a73e8;
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .containts {
        padding: 20px;
    }
}
