
    @import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap');

    .edv-contact-wrapper {
        font-family: 'Jost', sans-serif;
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 20px;
        color: #333333;
    }

    .edv-contact-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .edv-contact-header h1 {
        color: #030165;
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .edv-contact-header p {
        color: #666666;
        font-size: 16px;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
    }

    .edv-contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 50px;
    }

    .edv-contact-card {
        background: #f9f9fb;
        padding: 40px 30px;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #e0e0e0;
    }

    .edv-contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(3, 1, 101, 0.08);
        border-color: #030165;
    }

    .edv-contact-icon {
        width: 50px;
        height: 50px;
        background-color: rgba(3, 1, 101, 0.05);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #030165;
    }

    .edv-contact-icon svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .edv-contact-card h3 {
        font-size: 20px;
        color: #030165;
        margin: 0 0 10px 0;
        font-weight: 600;
    }

    .edv-contact-card p {
        font-size: 15px;
        color: #666666;
        margin: 0 0 15px 0;
        line-height: 1.5;
    }

    .edv-contact-link {
        display: inline-block;
        font-size: 16px;
        font-weight: 500;
        color: #030165;
        text-decoration: none;
        border-bottom: 2px solid transparent;
        transition: border-color 0.3s ease;
    }

    .edv-contact-link:hover {
        border-bottom: 2px solid #030165;
    }

    .edv-business-hours {
        text-align: center;
        padding: 30px;
        background-color: rgba(3, 1, 101, 0.03);
        border-radius: 8px;
        border: 1px dashed #cccccc;
    }

    .edv-business-hours h4 {
        color: #030165;
        font-size: 18px;
        margin: 0 0 10px 0;
    }

    .edv-business-hours p {
        color: #666666;
        margin: 0;
        font-size: 15px;
    }
