﻿/*Customer Care page*/
.eva-customer-care {
    font-family: Arial, sans-serif;
    color: #000;
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

    .eva-customer-care h2 {
        color: #0033cc;
        font-size: 20px;
    }

    .eva-customer-care .highlight {
        font-size: 16px;
        margin-bottom: 30px;
    }

.call-now {
    font-size: 18px;
}

.phone-number {
    font-size: 20px;
}

.hours, .small-text {
    font-size: 16px;
}

.card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    width: 200px;
    background-color: #fff;
    text-align: center;
}

.card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 14px;
    color: #003366;
    margin-bottom: 10px;
}

    .card h3.supplier {
        color: #006633;
    }

.card p {
    font-size: 13px;
    margin-bottom: 15px;
}

.green-button,
.blue-button {
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    background-color: var(--green-button); /* green default */
    text-decoration: none; /* remove underline by default */
    display: inline-block;
}

.blue-button {
    background-color: var(--blue-button); /* override blue */
}

    /* Hover style: underline while keeping white text */
    .green-button:hover,
    .blue-button:hover {
        text-decoration: underline;
        color: #fff;
    }

.green-button {
    background-color: var(--green-button);
}

.blue-button {
    background-color: var(--blue-button);
}

.help-links {
    text-align: left;
    font-size: 13px;
    margin-top: 20px;
}

    .help-links a {
        color: #0033cc;
        text-decoration: underline;
    }

.eva-support-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Original 2x2 card grid */
.eva-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Standalone self-help card on right */
.self-help-standalone {
    margin-top: 150px; /* manually adjust this value to fine-tune vertical alignment */
}

/* Keep card styling the same */
.card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    width: 300px;
    background-color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-icon {
    display: block;
    margin: 10px auto 15px auto;
    width: 40px;
    height: auto;
}

.card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 15px;
    width: 200px;
    background-color: #fff;
    text-align: center;
}

.card-icon {
    display: block;
    margin: 10px auto 15px auto; /* top, horizontal auto, bottom */
    width: 40px;
    height: auto;
}

@media (max-width: 768px) {
    .eva-support-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .eva-support-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .card {
        width: 90%;
        max-width: 360px;
    }

    .self-help-standalone {
        margin-top: 30px;
        width: 100%;
        display: flex;
        justify-content: center;        
    }

        .self-help-standalone .card {
            width: 90%;
            max-width: 360px;
            margin-right: 25px;
        }

    .eva-customer-care h2 {
        font-size: 18px;
    }

    .eva-customer-care .highlight,
    .call-now,
    .phone-number {
        font-size: 16px;
    }

    .card p,
    .card h3,
    .help-links {
        font-size: 14px;
    }

    .green-button,
    .blue-button {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
        margin: 5px auto;
    }
}
