/* --- Master/Layout Styles matching EVantage UI --- */
:root {
    --ev-primary-blue: #00A651;  
    --ev-accent-green: #00A651;  
    --ev-dark-text: #1A1A1A;     
    --ev-muted-text: #555555;    
    --ev-bg-light: #F9F9F9;      
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ev-dark-text);
    background-color: #ffffff;
}

.ev-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header Styling --- */
.ev-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ev-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.ev-logo-wrapper img {
    /* height: 50px; */
    height: 80px;
    display: block;
}

.ev-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ev-nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    /* font-size: 16px; */
    transition: color 0.3s;
}

.ev-nav a:hover, .ev-nav a.active {
    color: var(--ev-primary-blue);
}

.ev-btn-contact-nav {
    border: 2px solid #000000;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ev-btn-contact-nav:hover {
    background-color: #000000;
    color: #ffffff;
}

/* --- Core Content Styling --- */
.ev-solutions-section {
    padding: 70px 0;
}

.ev-section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.ev-subtitle {
    color: var(--ev-accent-green);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 8px;
}

.ev-title {
    font-size: 36px;
    color: #111111;
    margin: 0 0 15px 0;
    font-weight: 800;
}

.ev-description {
    color: var(--ev-muted-text);
    font-size: 16px;
    line-height: 1.6;
}

.ev-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ev-solution-card {
    background-color: var(--ev-bg-light);
    border: 1px solid #EDEDED;
    border-radius: 12px;
    padding: 35px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ev-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.highlighted-card {
    border-top: 4px solid var(--ev-primary-blue);
    background-color: #ffffff;
}

.ev-solution-card h3 {
    font-size: 22px;
    margin: 0 0 12px 0;
    font-weight: 700;
}

.ev-solution-card p {
    color: var(--ev-muted-text);
    font-size: 15px;
    margin-bottom: 20px;
}

.ev-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #E5E5E5;
    padding-top: 15px;
}

.ev-card-features li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.ev-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ev-accent-green);
    font-weight: bold;
}

.ev-seo-text-block {
    background: #ffffff;
    border: 1px dashed #CCCCCC;
    border-radius: 12px;
    padding: 35px;
    /* margin-top: 40px; */
}

.ev-seo-text-block h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
}

/* --- Footer Section (Matched to Screenshot UI) --- */
.ev-footer-links-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.ev-footer-link-btn {
    background-color: #8A1515; /* Dark maroon/red buttons from screen 2 */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
}

.ev-contact-banner {
    background-color: var(--ev-accent-green);
    border-radius: 24px;
    padding: 50px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.ev-banner-left {
    max-width: 30%;
}

.ev-banner-left h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.ev-banner-center {
    text-align: center;
    flex-grow: 1;
}

.ev-banner-center h2 {
    font-size: 84px; /* Big bold text from screen 2 */
    font-weight: 900;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1;
}

.ev-banner-right {
    max-width: 35%;
    text-align: right;
}

.ev-banner-right p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.ev-copyright-bar {
    text-align: right;
    font-size: 13px;
    color: #666666;
    padding-bottom: 30px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .ev-contact-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    .ev-banner-left, .ev-banner-right {
        max-width: 100%;
        text-align: center;
    }
    .ev-banner-center h2 {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .ev-header-container { height: auto; padding: 15px 20px; flex-direction: column; gap: 15px; }
    .ev-nav { flex-wrap: wrap; justify-content: center; gap: 15px; }
    .ev-title { font-size: 28px; }
}

/* ==========================
   SEO CONTENT SECTION
========================== */

.ev-seo-text-block {
    background: #ffffff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 45px;
    /* margin-top: 50px; */
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    padding-top: 20px;
}

.ev-seo-text-block h2 {
    font-size: 30px;
    color: #111111;
    margin-bottom: 18px;
    margin-top: 35px;
    font-weight: 700;
    line-height: 1.3;
}

.ev-seo-text-block h2:first-child {
    margin-top: 0;
}

.ev-seo-text-block h3 {
    font-size: 22px;
    color: #111111;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.ev-seo-text-block p {
    font-size: 16px;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.ev-seo-text-block strong {
    color: var(--ev-primary-blue);
    font-weight: 700;
}

/* ==========================
   FEATURE LIST
========================== */

.ev-seo-text-block .ev-card-features {
    margin-top: 25px;
    margin-bottom: 25px;
    border-top: none;
    padding-top: 0;
}

.ev-seo-text-block .ev-card-features li {
    font-size: 16px;
    color: #333333;
    margin-bottom: 14px;
    line-height: 1.7;
    padding-left: 28px;
}

.ev-seo-text-block .ev-card-features li::before {
    content: "✓";
    color: var(--ev-primary-blue);
    font-size: 18px;
    font-weight: bold;
}

/* ==========================
   FAQ SECTION
========================== */

.faq-item {
    background: #F9F9F9;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111111;
}

.faq-item p {
    margin-bottom: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
}

/* ==========================
   CTA SECTION
========================== */

.ev-cta-section {
    background: linear-gradient(135deg, #00A651, #008D45);
    border-radius: 24px;
    padding: 55px 40px;
    text-align: center;
    margin-top: 60px;
    color: #ffffff;
}

.ev-cta-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.ev-cta-section p {
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto 25px auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

.ev-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #00A651;
    text-decoration: none;
    padding: 14px 34px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ev-cta-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================
   INTERNAL LINKS
========================== */

.ev-seo-text-block a {
    color: var(--ev-primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.ev-seo-text-block a:hover {
    text-decoration: underline;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {

    .ev-seo-text-block {
        padding: 35px 28px;
    }

    .ev-seo-text-block h2 {
        font-size: 26px;
    }

    .ev-cta-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {

    .ev-seo-text-block {
        padding: 28px 22px;
        border-radius: 12px;
    }

    .ev-seo-text-block h2 {
        font-size: 24px;
    }

    .ev-seo-text-block h3 {
        font-size: 20px;
    }

    .ev-seo-text-block p {
        font-size: 15px;
        line-height: 1.8;
    }

    .faq-item {
        padding: 18px;
    }

    .ev-cta-section {
        padding: 40px 20px;
        border-radius: 18px;
    }

    .ev-cta-section h2 {
        font-size: 26px;
    }

    .ev-cta-section p {
        font-size: 15px;
    }

    .ev-cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

/* Responsive Image */
.ev-seo-image{
    width: 65%;
    max-width: 65%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    margin: 20px 0;
}

/* Tablet */
@media screen and (max-width: 991px){
    .ev-seo-image{
        border-radius: 10px;
    }
}

/* Mobile */
@media screen and (max-width: 767px){
    .ev-seo-image{
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 15px 0;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px){
    .ev-seo-image{
        width: 100%;
        height: auto;
    }
}


/* Related Links */
.related-links-section{
    margin-top: 50px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 12px;
}

.related-links-section h2{
    margin-bottom: 20px;
    text-align:center;
}

.related-links-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
}

.related-links-list li a{
    display: block;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s ease;
    border: 1px solid #ddd;
}

.related-links-list li a:hover{
    transform: translateY(-3px);
}

/* Tablet */
@media(max-width:991px){
    .related-links-list{
        grid-template-columns: repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:767px){
    .related-links-section{
        padding: 20px;
    }

    .related-links-list{
        grid-template-columns: 1fr;
    }

    .related-links-list li a{
        font-size: 15px;
    }
}

.ev-seo-image{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.ev-content-box{
    display: flex;
    align-items: center;
    height: 100%;
}

.ev-content-box p{
    margin-bottom: 0;
    line-height: 1.9;
}

/* Mobile */
@media(max-width:767px){

    .ev-seo-image{
        height: auto;
    }

    .ev-content-box{
        margin-top: 15px;
    }
}


.evantage_paragraph{
    text-align: justify;
    line-height: 2;
}


.h1{
    font-weight: 750 !important;
    margin-bottom: 20px !important;
}

.ev-heading{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.ev-content-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.evantage_paragraph{
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.ev-seo-image{
    width: 100%;
    max-width: 500px;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

/* Tablet */
@media(max-width:991px){
    .ev-heading{
        font-size: 34px;
    }

    .ev-seo-image{
        height: auto;
        max-width: 100%;
    }
}

/* Mobile */
@media(max-width:767px){

    .ev-heading{
        font-size: 28px;
        text-align: center;
    }

    .evantage_paragraph{
        font-size: 16px;
        text-align: justify;
    }

    .ev-seo-image{
        margin-top: 10px;
        border-radius: 12px;
    }
}