/* ============================= */
/* MAIN CONTENT LAYOUT */
/* ============================= */
.content-area {
    padding: 30px 0;
    background: #f9fafb;
}

.content-area .container {
    margin: 0 auto;
}

/* ============================= */
/* HEADINGS */
/* ============================= */
.content-area h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-area h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-area h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
}

/* ============================= */
/* PARAGRAPH */
/* ============================= */
.content-area p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #333;
}

/* ============================= */
/* LISTS */
/* ============================= */
.content-area ul,
.content-area ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.content-area ul li,
.content-area ol li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ============================= */
/* TABLE STYLING - UPDATED */
/* ============================= */
.wp-block-table {
    margin: 50px auto;
    width: 100%;
}

.wp-block-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Segoe UI', sans-serif;
}

/* Header */
.wp-block-table thead {
    background: #7EBC6E; /* Brand color from SVG */
}

.wp-block-table th {
    padding: 18px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.5px;
}

/* Body cells */
.wp-block-table td {
    padding: 18px 24px;
    font-size: 16px;
    color: #374151;
    border-bottom: 1px solid #e6e6e6;
    transition: background 0.3s ease;
}

/* Stripe effect */
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f7fdf3; /* subtle greenish stripe */
}

/* Hover effect */
.wp-block-table tbody tr:hover {
    background: #f0f8f1; /* slightly brighter on hover */
}

/* Last row border removal */
.wp-block-table tbody tr:last-child td {
    border-bottom: none;
}

/* Rating column highlight */
.wp-block-table td:last-child {
    font-weight: 700;
    color: #7EBC6E; /* Brand green */
    text-align: center;
}

/* ============================= */
/* FINAL RATING BOX */
/* ============================= */
.content-area p[style*="1.5rem"] {
    text-align: center;
    background: #0f172a;
    color: #fff;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 30px;
}

/* ============================= */
/* CTA BUTTON */
/* ============================= */
.content-area a.wp-block-button__link {
    display: inline-block;
    transition: all 0.3s ease;
    background-color: #7EBC6E; /* Brand color */
    color: #fff;
    font-weight: 700;
    border-radius: 40px;
    padding: 15px 30px;
    text-decoration: none;
}

.content-area a.wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .content-area h1 {
        font-size: 28px;
    }

    .content-area h2 {
        font-size: 22px;
    }

    .content-area h3 {
        font-size: 18px;
    }

    .content-area p {
        font-size: 16px;
    }

    .wp-block-table th,
    .wp-block-table td {
        padding: 12px;
        font-size: 14px;
    }
}
