/* Basic Reset */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Headings */
h1, h2, h3 {
    color: #1e40af;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* Paragraphs & Lists */
p, li {
    line-height: 1.7;
    margin-bottom: 15px;
    word-wrap: break-word;
}
ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Links */
a {
    text-decoration: none; /* underline remove */
    color: #007bff;        /* blue color */
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: underline; /* hover এ underline দেখাবে */
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
    .container {
        padding: 15px;
        margin: 20px auto;
    }

    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.5em;
    }
    h3 {
        font-size: 1.3em;
    }

    p, li {
        font-size: 1em;
    }
}

/* Small mobile screens */
@media screen and (max-width: 500px) {
    .container {
        padding: 10px;
        margin: 15px auto;
    }

    h1 { font-size: 1.6em; }
    h2 { font-size: 1.3em; }
    h3 { font-size: 1.1em; }
    p, li { font-size: 0.95em; }
}
