section[data-cattype="88922"] {
    background: #f8f9fb;
}

[data-cattype="88922"] .badge {
    background: #ffcc00;
    font-weight: 600;
    border-radius: 6px;
}

[data-cattype="88922"] h1 {
    color: #1e5bb8;
    letter-spacing: 1px;
}

[data-cattype="88922"] h1 em {
    font-style: italic;
    color: #1e5bb8;
}

/* Card */
[data-cattype="88922"] .contact-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

[data-cattype="88922"] .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Image */
[data-cattype="88922"] .contact-img {
    position: relative;
}

[data-cattype="88922"] .contact-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

/* Hover arrow button */
[data-cattype="88922"] .send-btn {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #3dd3a5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

[data-cattype="88922"] .contact-card:hover .send-btn {
    transform: scale(1.1) rotate(10deg);
}

/* Content */
[data-cattype="88922"] .contact-card small {
    color: #888;
}

[data-cattype="88922"] .contact-card h4 {
    margin-top: 5px;
    font-size: 22px;
}

[data-cattype="88922"] .contact-card hr {
    margin: 15px 0;
    opacity: 0.1;
}

/* Icons */
[data-cattype="88922"] .icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}

[data-cattype="88922"] .icon.blue {
    background: #e6f4ff;
    color: #1e5bb8;
}

[data-cattype="88922"] .icon.orange {
    background: #ffe9e3;
    color: #ff6b4a;
}

/* Responsive */
@media (max-width: 767px) {
    [data-cattype="88922"] .contact-img img {
        height: 200px;
    }
}