
:root{
    --primary:#0A4DA2;
    --dark:#06357A;
    --light:#F3F6FA;
    --text:#1F2937;
    --muted:#6B7280;
    --white:#ffffff;
    --border:rgba(10,77,162,0.10);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.contact-section{
    padding:70px 20px;
    background:#fff;
}

.container{
    max-width:1100px;
    margin:0 auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:36px;
    color:var(--dark);
    font-weight:700;
    line-height:1.3;
}

.section-title p{
    margin-top:10px;
    font-size:18px;
    color:var(--muted);
    line-height:1.6;
}

/* Grid */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

/* Card */
.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:24px;
    display:flex;
    align-items:flex-start;
    gap:16px;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
    transition:all .3s ease;
}

.card:hover{
    transform:translateY(-4px);
    border-color:var(--primary);
    box-shadow:0 10px 26px rgba(10,77,162,0.12);
}

/* Icon */
.icon{
    width:46px;
    height:46px;
    flex-shrink:0;
    border-radius:10px;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon i{
    color:#fff;
    font-size:18px;
    line-height:1;
    font-style:normal;
    transform:none !important;
    rotate:0deg !important;
}

/* Content */
.content{
    flex:1;
    min-width:0;
}

.label{
    font-size:13px;
    color:var(--muted);
    margin-bottom:6px;
    letter-spacing:.3px;
}

.value{
    font-size:16px;
    color:var(--text);
    font-weight:600;
    line-height:1.6;
    word-break:break-word;
}

/* Tablet */
@media (max-width:768px){

    .contact-section{
        padding:50px 15px;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

    .section-title p{
        font-size:16px;
    }

    .card{
        padding:20px;
    }
}

/* Mobile */
@media (max-width:480px){

    .section-title h2{
        font-size:26px;
    }

    .section-title p{
        font-size:15px;
    }

    .icon{
        width:42px;
        height:42px;
    }

    .icon i{
        font-size:16px;
    }

    .value{
        font-size:15px;
    }
}
