.gc-brosur * {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.gc-brosur {
    background-color: #FFFFFF;
    padding: 56px 32px 90px;
}

.gc-brosur-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gc-page-title {
    margin-bottom: 40px;
}

.gc-page-title h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0 0 10px;
}

.gc-page-title p {
    font-size: 14.5px;
    color: #6B7280;
    line-height: 1.7;
    max-width: 640px;
    margin: 0;
}

.gc-brosur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gc-brosur-card {
    border: 1px solid #E7E9EF;
    border-radius: 12px;
    padding: 26px 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gc-brosur-card:hover {
    box-shadow: 0 16px 32px rgba(25, 44, 77, 0.1);
    transform: translateY(-4px);
}

.gc-brosur-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E9EEF7;
    border-radius: 10px;
    margin-bottom: 18px;
    color: var(--navy, #171B2E);
}

.gc-brosur-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0 0 8px;
}

.gc-brosur-card p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #6B7280;
    margin: 0 0 18px;
}

.gc-brosur-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E7E9EF;
    padding-top: 14px;
}

.gc-brosur-meta span {
    font-size: 12px;
    color: #9AA2B1;
}

.gc-brosur-meta a {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold, #5B4CE0);
    text-decoration: none;
}

.gc-brosur-meta a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .gc-brosur-grid {
        grid-template-columns: 1fr;
    }
}