body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #212529;
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 24px;
}

.article-container p {
    color: #2E3F47;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

h1, h2, h3, h4 {
    color: #212529;
    margin-top: 2em;
    margin-bottom: 0.75em;
    font-weight: 700;
}

p {
    color: #2e3f47;
    margin-bottom: 1.2em;
    font-size: 16px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(197, 29, 21, 0.1);
    color: #c51d15;
    padding: 6px 16px;
    border-radius: 44px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag img {
    width: 16px;
    height: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn:hover {
    opacity: 0.9;
}

.btn-primary {
    background-color: #c51d15;
    color: #ffffff;
}

.btn-dark {
    background-color: #212529;
    color: #ffffff;
}

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

.site-header {
        padding: 16px 0;
        background: #ffffff;
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .full-width-border {
     border-top: 1px solid #2125291A;
    }
    .main-nav {
        display: flex;
        gap: 32px;
        align-items: center;
    }
    .main-nav a {
        text-decoration: none;
        color: #212529;
        font-size: 14px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .main-nav a:hover {
        color: #c51d15;
    }
    .login-btn {
        padding: 8px 24px;
        font-size: 14px;
    }

    @media (max-width: 1024px) {
        .main-nav {
            display: none; /* Hide nav on smaller screens for simplicity in this static build */
        }
    }

/* CSS for section section:Hero */
    .hero-section {
        padding: 80px 0 40px;
        max-width: 1070px;
        margin: 0 auto;
    }
.hero-title {
    font-size: 45px;
    line-height: 1.2;
    font-family: 'poppins';
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: #212529;
}
.hero-subtitle {
    font-size: 16px;
    color: #2e3f47;
    line-height: 1.6;
}
    .meta-info {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex-wrap: wrap;
    }
    .meta-group {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .avatars {
        display: flex;
    }
    .avatars img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        margin-left: -12px;
        background: #f6f7f9;
    }
    .avatars img:first-child {
        margin-left: 0;
    }
.author-details {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    text-align: left;
    gap: 8px;
}
    .author-name {
        font-weight: 500;
        font-size: 13px;
        color: #212529;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .author-role {
        font-size: 13px;
        color: #2e3f47;
    }
    .meta-divider {
        width: 1px;
        height: 32px;
        background-color: rgba(33, 37, 41, 0.1);
    }
    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #212529;
        font-weight: 500;
        font-family: 'Poppins';
    }
    .meta-item img {
        width: 54px;
        height: 54px;
    }

    @media (max-width: 768px) {
        .hero-title {
            font-size: 32px;
        }
        .meta-info {
            align-items: baseline;
            flex-direction: column;
            gap: 20px;
        }
        .meta-group {
            flex-direction: column;
            align-items: flex-start !important;
            align-content: flex-start !important;
        }

        .meta-divider {
            display: none;
        }
    }

/* CSS for section section:Article */
    .article-section h2 {
        font-size: 30px;
        margin-top: 48px;
        font-weight: 600;
        font-family: 'poppins';
        text-align: left;
        color: #212529;
    }
    .text-left p {
        text-align: left;
    }
    .grey-box {
        background-color: #f2f2f2;
        border: 1px solid rgba(33, 37, 41, 0.1);
        border-radius: 12px;
        padding: 32px 40px;
        margin: 32px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .article-container.second-article-container {
     max-width: 1080px;
     margin: 0 auto;
    }
    .text-sty {
      text-align: left;
    }
    .query-item {
        display: flex;
        align-items: center;
        gap: 16px;
        font-weight: 600;
        color: #212529;
        font-family: 'Poppins';
        font-size: 20px;
    }
    .query-item img {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .content-image {
        width: 100%;
        border-radius: 24px;
        margin: 40px 0;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        display: block;
    }
    
    .steps-list {
        margin: 48px 0;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .step-item {
        display: flex;
        gap: 24px;
        align-items: flex-start;
    }
    .step-number {
        position: relative;
        width: 64px;
        height: 64px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .step-number img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .step-number span {
        position: relative;
        z-index: 1;
        color: #c51d15;
        font-weight: 700;
        font-size: 22px;
    }
    .step-content h3 {
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 20px;
        font-weight: 600;
        text-align: left;
        color: #212529;
        font-family: 'poppins';
    }
    .step-item p {
    text-align: left;
    font-family: 'poppins';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    }

    .text-light {
        font-weight: 400;
        color: #6c757d;
        font-size: 16px;
    }
    .step-content p {
        margin: 0;
    }
    
    .diagram-container {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        margin: 80px 0;
    }
    .diagram-box {
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 24px;
        width: 160px;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
        text-align: center;
        font-weight: 600;
        font-size: 15px;
        color: #212529;
    }
    .diagram-box.highlight {
        border: 2px solid #c51d15;
        box-shadow: 0px 8px 16px rgba(197, 29, 21, 0.1);
    }
    .diagram-box img {
        height: 48px;
        object-fit: contain;
    }
    .diagram-arrow {
        width: 80px;
    }
    
    .benefits-list {
        padding-left: 24px;
        margin-bottom: 24px;
        color: #212529;
    }
    .benefits-list li {
        margin-bottom: 12px;
        font-family: 'poppins';
        font-weight: 600;
        font-size: 16px;
        text-align: left;
        list-style: circle;
        color: #212529;
    }
    
    .highlight-box {
        background-color: rgba(197, 29, 21, 0.04);
        border-left: 4px solid #c51d15;
        padding: 32px 40px;
        border-radius: 0 8px 8px 0;
        margin: 48px 0;
    }
    .highlight-box h3 {
        margin-top: 0;
        text-align: left;
        font-family: 'poppins';
        font-weight: 700;
        font-size: 26px;
    }
    .highlight-box p:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 768px) {
        .diagram-container {
            flex-direction: column;
            gap: 16px;
        }
        .diagram-arrow {
            transform: rotate(90deg);
            width: 40px;
        }
        .grey-box, .highlight-box {
            padding: 24px;
        }
    }

/* CSS for section section:CTA */
.cta-section {
        position: relative;
        padding: 120px 0;
        overflow: hidden;
    }
    .cta-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 960px;
        margin: 0 auto;
    }
    .tag-light {
        background-color: rgba(197, 29, 21, 0.15);
    }
    .cta-title {
        font-size: 45px;
        font-weight: 600;
        margin-top: 24px;
        margin-bottom: 16px;
        font-family: 'poppins';
    }
    .cta-subtitle {
        font-size: 17px;
        color: #2e3f47;
        margin-bottom: 64px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 400;
        font-family: 'poppins';
    }
    .cards-container {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-bottom: 80px;
    }
    .action-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 48px 40px;
        width: calc(50% - 16px);
        box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.08);
        text-align: left;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    .action-card:hover {
        transform: translateY(-5px);
    }
    .card-icon {
        margin-bottom: 24px;
        height: 48px;
        display: flex;
        align-items: center;
    }
    .card-icon img {
        max-height: 100%;
    }
    .action-card h3 {
        margin-top: 0;
        font-size: 24px;
        margin-bottom: 16px;
    }
    .action-card p {
        flex-grow: 1;
        margin-bottom: 32px;
        color: #2e3f47;
        font-size: 16px;
        font-weight: 400;
        font-family: 'poppins';
    }
    .action-card .btn {
        width: 100%;
        justify-content: space-between;
        padding: 16px 24px;
    }
    .cta-footer-text {
        font-size: 16px;
        font-weight: 400;
        color: #2e3f47;
        max-width: 640px;
        margin: 0 auto;
        font-family: 'poppins';
        line-height: 1.5;
    }
    .full-width-border .article-container {
     padding-bottom: 0px;
    }


    @media (max-width: 768px) {
        .cards-container {
            flex-direction: column;
        }
        .action-card {
            width: 100%;
            padding: 32px 24px;
        }
        .cta-title {
            font-size: 32px;
        }
    }

/* CSS for section section:Footer */
.footer-section {
        width: 100%;
        display: block;
        background-color: #212529; /* Fallback color matching the image */
    }
    .footer-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }






.cards-container a.btn.btn-primary:hover {
    background: #fff;
    color: red;
    border-color: red;
}
.action-card .btn img {
filter:brightness(0) saturate(100%) invert(18%) sepia(96%) saturate(7486%) hue-rotate(357deg) brightness(96%) contrast(118%);
}
.cards-container a.btn.btn-primary img {
filter: brightness(0) saturate(100%) invert(18%) sepia(96%) saturate(7486%) hue-rotate(357deg) brightness(96%) contrast(118%);
}
.action-card a.btn.btn-dark {
    background-color: #ffffff;
    color: #c51d15;
}
.action-card a.btn.btn-primary {
    border:none;
}
