
: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;
    font-family: Arial, sans-serif;
}

body{
    background:#ffffff;
    color:var(--text);
}

/* Section */
.contact-section{
    padding:70px 20px;
}

/* Container */
.container{
    max-width:1100px;
    margin:0 auto;
}

/* Header */
.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:32px;
    color:var(--dark);
    font-weight:700;
    letter-spacing:0.5px;
}

.section-title p{
    color:var(--muted);
    margin-top:10px;
}

/* GRID */
.contact-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:20px;
}

/* CARD */
.card{
    background:#ffffff;
    border-radius:14px;
    padding:24px;
    display:flex;
    align-items:flex-start;
    gap:16px;
    border:1px solid var(--border);
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
    transition:0.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;
    min-width:46px;
    border-radius:10px;
    background:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
}

/* CONTENT */
.content{
    flex:1;
}

.label{
    font-size:13px;
    color:var(--muted);
    margin-bottom:6px;
    letter-spacing:0.3px;
}

.value{
    font-size:16px;
    color:var(--text);
    font-weight:600;
    word-break:break-word;
}

/* IMAGE + TEXT SECTION (NEW) */
.media-section{
    margin-top:50px;
    display:flex;
    gap:30px;
    align-items:center;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:20px;
    box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.media-img{
    flex:1;
    border-radius:12px;
    overflow:hidden;
    min-height:260px;
}

.media-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.media-text{
    flex:1;
}

.media-text h3{
    font-size:22px;
    color:var(--dark);
    margin-bottom:10px;
}

.media-text p{
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
    margin-bottom:10px;
}

/* Responsive */
@media(max-width:768px){
    .contact-grid{
        grid-template-columns:1fr;
    }

    .media-section{
        flex-direction:column;
    }

    .section-title h2{
        font-size:26px;
    }
}
