/* BODY */
body {
    font-family: 'Noto Sans Tamil','Poppins',sans-serif;
    background: #f6f9fc;
    color: #333;
    margin: 0;
    padding: 0;
}

/* WRAPPER */
.model-wrapper {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* HEADER */
.model-header {
    text-align: center;
    margin-bottom: 30px;
}

.model-header h1 {
    font-size: 26px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.model-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* CARD */
.model-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* CARD TITLE */
.card-title {
    font-size: 20px;
    color: #198754;
    border-left: 5px solid #198754;
    padding-left: 12px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* PARAGRAPH TEXT */
.info-text {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
    color: #333;
}

/* WARNING / HIGHLIGHTED PARAGRAPH */
.info-text.warn {
    background: #fff3cd;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 500;
    color: #856404;
    border-left: 5px solid #ffc107;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .model-header h1 {
        font-size: 22px;
    }

    .card-title {
        font-size: 18px;
    }

    .info-text {
        font-size: 15px;
    }

    .info-text.warn {
        font-size: 15px;
    }
}
