/* Base Reset and Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding: 10px;
}

/* Container */
.content .container {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Section */
section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    /* border-bottom: 1px solid #e0e0e0; */
}

/* Headings */
.content h1, .content h2 {
    color: #222;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.content h1 {
    font-size: 2rem;
}

.content h2 {
    font-size: 1.5rem;
}

/* Paragraph */
.content p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Lists */
.content ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 20px;
    line-height: 1.6;
}

/* Arrow before list items */
.content li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #007acc;
    font-weight: bold;
}

.text-center{
    text-align: center;
}

/* Responsive Typography and Layout */
@media (max-width: 768px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1.25rem;
    }

    .content .container {
        padding: 15px;
        max-width: 95%;
    }

    .content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.3rem;
    }

    .content h2 {
        font-size: 1.1rem;
    }

    .content p {
        font-size: 0.9rem;
    }

    .content ul {
        padding-left: 16px;
    }

    .content li {
        padding-left: 18px;
    }

    .content .container {
        padding: 10px;
        max-width: 98%;
    }
}
