* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
    color: rgb(51, 51, 51);
    background: rgba(255, 255, 255, 1);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    margin: 0;
}

[data-gjs-type="text"][class*="gjs-comp-selected"] {
    outline-color: purple !important;
    outline-style: solid !important;
    outline-width: 3px !important;
}

/* Reset & Base */
/* Advertorial Label */
.advertorial-label {
    font-size: 6px;
    color: rgb(153, 153, 153);
    text-transform: uppercase;
    background: rgba(248, 249, 250, 1);
    letter-spacing: 0.5px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(248, 249, 250);
    padding: 5px 20px;
}

/* Header */
.header {
    background: rgba(248, 249, 250, 1);
    border-bottom: 2px solid rgba(34, 34, 34, 1);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(248, 249, 250);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: rgb(34, 34, 34);
    padding: 15px 20px;
}

.header-inner {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
}

.header-date {
    font-size: 12px;
    color: rgb(102, 102, 102);
}

.header-trending {
    display: inline-block;
    background: rgba(0, 132, 61, 1);
    color: rgb(255, 255, 255);
    font-size: 10px;
    border-radius: 3px;
    font-family: Arial, sans-serif;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(0, 132, 61);
    padding: 2px 8px;
}

.header-nav {
    font-size: 11px;
    color: rgba(136, 136, 136, 1);
    border-top: 1px solid rgba(221, 221, 221, 1);
    margin-top: 8px;
    padding-top: 8px;
}

.header-nav span {
    margin-right: 15px;
}

/* Article Container */
.article-container {
    max-width: 900px;
    margin: 0px auto;
    padding: 25px 20px 40px;
}

/* Update Banner */
/* AU Flag Badge */
.au-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(240, 247, 242, 1);
    border: 1px solid rgba(200, 230, 201, 1);
    border-radius: 4px;
    font-size: 12px;
    font-family: Arial, sans-serif;
    color: rgba(46, 125, 50, 1);
    margin-bottom: 15px;
    padding: 6px 12px;
}

/* Article Header */
.article-category {
    font-size: 12px;
    text-transform: uppercase;
    color: rgb(0, 132, 61);
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

h1 {
    font-size: 34px;
    line-height: 1.2;
    color: rgb(26, 26, 26);
    margin-bottom: 15px;
    font-weight: 700;
}

.article-subtitle {
    font-size: 19px;
    color: rgb(85, 85, 85);
    line-height: 1.4;
    margin-bottom: 20px;
    font-style: italic;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(238, 238, 238, 1);
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    margin-bottom: 25px;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(238, 238, 238);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(238, 238, 238);
    padding: 15px 0px;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.author-details {
    font-size: 13px;
    color: rgb(102, 102, 102);
    font-family: Arial, sans-serif;
}

.author-name {
    font-weight: 700;
    color: rgb(51, 51, 51);
}

.share-count {
    margin-left: auto;
    text-align: center;
    font-size: 12px;
    color: rgb(136, 136, 136);
    font-family: Arial, sans-serif;
}

.share-count strong {
    display: block;
    font-size: 18px;
    color: rgb(59, 89, 152);
}

/* Article Content */
.article-container p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.6;
    color: rgb(51, 51, 51);
}

.article-container h2 {
    font-size: 26px;
    color: rgb(26, 26, 26);
    line-height: 1.3;
    margin: 35px 0px 18px;
}

.article-container h3 {
    font-size: 22px;
    color: rgb(26, 26, 26);
    line-height: 1.3;
    margin: 28px 0px 14px;
}

.article-container strong {
    color: rgb(26, 26, 26);
}

/* Images */
.article-img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    margin: 20px 0px;
}

.img-caption {
    font-size: 12px;
    color: rgb(136, 136, 136);
    font-style: italic;
    text-align: center;
    margin-top: -12px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* Highlight Box */
.highlight-box {
    background: rgba(240, 247, 242, 1);
    border-left: 4px solid rgba(0, 132, 61, 1);
    font-size: 17px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(240, 247, 242);
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: rgb(0, 132, 61);
    margin: 25px 0px;
    padding: 18px 20px;
}

.highlight-box p {
    margin-bottom: 8px;
}

.highlight-box p:last-child {
    margin-bottom: 0px;
}

/* Stats Box */
.stats-box {
    background: rgba(255, 255, 255, 1);
    border: 2px solid rgba(232, 232, 232, 1);
    border-radius: 6px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    margin: 25px 0px;
    padding: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(232, 232, 232);
}

.stats-box h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: rgb(26, 26, 26);
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(240, 240, 240, 1);
    font-size: 15px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(240, 240, 240);
    padding: 8px 0px;
}

.stat-item:last-child {
    border-bottom: none;
    border-bottom-width: initial;
    border-bottom-style: none;
    border-bottom-color: initial;
}

.stat-label {
    color: rgb(85, 85, 85);
}

.stat-value {
    font-weight: bold;
    color: rgb(26, 26, 26);
}

.stat-bad {
    color: rgb(192, 57, 43);
}

.stat-good {
    color: rgba(39, 174, 96, 1);
}

/* Testimonial */
.testimonial {
    background: rgba(248, 249, 250, 1);
    border-radius: 4px;
    border: 1px solid rgba(238, 238, 238, 1);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(248, 249, 250);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    margin: 25px 0px;
    padding: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(238, 238, 238);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: rgb(68, 68, 68);
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    color: rgb(136, 136, 136);
    font-family: Arial, sans-serif;
}

.testimonial-stars {
    color: rgb(243, 156, 18);
    font-size: 16px;
    margin-bottom: 8px;
}

/* CTA Button */
.cta-subtext {
    text-align: center;
    font-size: 13px;
    color: rgb(136, 136, 136);
    margin-top: -20px;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin: 25px 0px;
}

.comparison-table th {
    background: rgba(26, 26, 26, 1);
    color: rgb(255, 255, 255);
    text-align: left;
    font-family: Arial, sans-serif;
    font-size: 14px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 26);
    padding: 12px 15px;
}

.comparison-table td {
    border-bottom: 1px solid rgba(238, 238, 238, 1);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(238, 238, 238);
    padding: 10px 15px;
}

.comparison-table tr:nth-child(even) {
    background: rgba(248, 249, 250, 1);
}

.check {
    color: rgb(39, 174, 96);
    font-size: 18px;
}

.cross {
    color: rgb(192, 57, 43);
    font-size: 18px;
}

/* Facebook Comments Section */
.fb-comments-section {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 4px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    margin: 30px 0px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(221, 221, 221);
}

.fb-comments-header {
    border-bottom: 1px solid rgba(221, 221, 221, 1);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgb(28, 30, 33);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(221, 221, 221);
    padding: 12px 16px;
}

.fb-comment {
    border-bottom: 1px solid rgba(240, 240, 240, 1);
    display: flex;
    gap: 10px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(240, 240, 240);
    row-gap: 10px;
    column-gap: 10px;
    padding: 16px;
}

.fb-comment:last-child {
    border-bottom: none;
    border-bottom-width: initial;
    border-bottom-style: none;
    border-bottom-color: initial;
}

.fb-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fb-comment-body {
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.fb-comment-name {
    font-weight: 700;
    color: rgb(28, 30, 33);
}

.fb-comment-text {
    color: rgb(28, 30, 33);
    line-height: 1.4;
    margin: 4px 0px;
}

.fb-comment-meta {
    font-size: 12px;
    color: rgb(101, 103, 107);
}

.fb-comment-meta a {
    color: rgb(101, 103, 107);
    text-decoration: none;
    margin-right: 12px;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

.fb-comment-meta a:hover {
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

/* Rating Badge */
.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 249, 250, 1);
    border-radius: 4px;
    font-family: Arial, sans-serif;
    row-gap: 8px;
    column-gap: 8px;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(248, 249, 250);
    margin: 20px 0px;
    padding: 12px 16px;
}

.rating-number {
    font-size: 28px;
    font-weight: 700;
    color: rgb(26, 26, 26);
}

.rating-stars {
    color: rgb(243, 156, 18);
    font-size: 18px;
}

.rating-count {
    font-size: 13px;
    color: rgb(136, 136, 136);
}

/* Footer */
.footer {
    width: 100%;
    background: rgba(26, 26, 26, 1);
    color: rgb(136, 136, 136);
    font-size: 8px;
    line-height: 1.5;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 26);
    padding: 25px 20px;
}

.footer-inner {
    max-width: 900px;
    margin: 0px auto;
}

.footer p {
    font-size: 8px;
    color: rgb(136, 136, 136);
    margin-bottom: 10px;
}

.footer strong {
    font-size: 8px;
    color: rgb(170, 170, 170);
}

.footer a {
    font-size: 8px;
    color: rgb(153, 153, 153);
    text-decoration: none;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

.footer a:hover {
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

.footer-links {
    padding-top: 10px;
    border-top: 1px solid rgba(51, 51, 51, 1);
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(51, 51, 51);
    margin: 15px 0px;
}

.footer-links a {
    margin-right: 15px;
}

.footer-refs {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(51, 51, 51, 1);
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: rgb(51, 51, 51);
}

/* Mobile Responsive */
.comparison-table tr:nth-child(2n) {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(248, 249, 250);
}

#ihun96 {
    max-width: 98%;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

#i394wn {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

#i82819 {
    width: 98%;
    max-width: 98%;
    display: block;
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 46);
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 8px;
    margin: 0px auto;
}

#io20vi {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

#ijiuft {
    width: 98%;
    max-width: 98%;
    display: block;
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 46);
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 8px;
    margin: 0px auto;
}

#i2zqxg {
    max-width: 98%;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

#iif5xo {
    max-width: 98%;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

#ivu3bu {
    max-width: 98%;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

#ixdxqi {
    width: 98%;
    max-width: 98%;
    display: block;
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 46);
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 8px;
    margin: 0px auto;
}

#ipwgnh {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

#ids7gg {
    width: 98%;
    max-width: 98%;
    display: block;
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 46);
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 8px;
    margin: 0px auto;
}

#imnc0e {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

#iehox5 {
    width: 98%;
    max-width: 98%;
    display: block;
    position: relative;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(26, 26, 46);
    overflow-x: hidden;
    overflow-y: hidden;
    border-radius: 8px;
    margin: 0px auto;
}

#cc-id-GdEIJkVKPqqY {
    width: 100%;
    height: auto;
}

#cc-id-2y6df5WMzyXc {
    width: 100%;
    height: auto;
}

#cc-id-zbeGrJ4BMo3a {
    width: 100%;
    height: auto;
}

#cc-id-T9bBdEWk22Jh {
    width: 100%;
    height: auto;
}

.update-banner {
    background: rgba(255, 243, 205, 1);
    border: 1px solid rgba(255, 193, 7, 1);
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgb(133, 100, 4);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 243, 205);
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    padding: 12px 16px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(255, 193, 7);
}

.update-banner a {
    color: rgb(0, 132, 61);
    font-weight: bold;
}

#im14et {
    color: rgba(255, 255, 255, 1);
}

#i9mqj2 {
    color: rgba(255, 255, 255, 1);
}

#iw1jlc {
    color: rgba(255, 255, 255, 1);
}

#i4kb8e {
    color: rgba(255, 255, 255, 1);
}

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg,
            rgba(50, 205, 50, 1) 0%,
            rgba(30, 126, 52, 1) 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: opacity 0.2s;
    background-image: linear-gradient(135deg,
            rgb(50, 205, 50) 0%,
            rgb(30, 126, 52) 100%);
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    transition-behavior: normal;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: opacity;
    margin: 30px 0px;
    padding: 18px 30px;
    border-style: none;
    border-width: initial;
    border-color: initial;
}

.cta-button:hover {
    opacity: 0.9;
}

.logo {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: rgb(26, 26, 26);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-decoration-line: none;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

.logo span {
    color: rgb(0, 132, 61);
}

#ij61 {
    height: 30px;
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }

    .header-date {
        font-size: 11px;
    }

    h1 {
        font-size: 26px;
    }

    .article-subtitle {
        font-size: 17px;
    }

    .article-container p {
        font-size: 17px;
    }

    .article-container h2 {
        font-size: 22px;
    }

    .article-container h3 {
        font-size: 20px;
    }

    .cta-button {
        font-size: 18px;
        padding: 15px 20px;
    }

    .header-nav {
        display: none;
    }

    .stat-item {
        font-size: 13px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    #ij61 {
        font-size: 22px;
    }

    #ie8i {
        padding: 0px 11px 0px 0px;
    }

    #ihdd {
        padding: 5px;
    }
}