body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

.contact-box-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    color: #2c5d8a;
    font-size: 32px;
}

/* GRID LAYOUT */
.boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop */
    gap: 20px;
}

/* Each item */
.item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.item:hover {
    background: #eef6ff;
    transform: translateY(-2px);
}

/* Icon */
.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.name {
    color: #2c5d8a;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 900px) {
    .boxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 500px) {
    .boxes {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 22px;
    }

    .item {
        padding: 10px;
    }
}