.transparency-section {
    padding: 80px 0;
    background: #f4f1f8;
}
.transparency-title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 15px;
    color: #5D0A6B;
    font-weight: 700;
}
.transparency-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.transparency-card {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-left: 6px solid #8a489f;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.transparency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.transparency-content h3 {
    font-size: 21px;
    margin-bottom: 8px;
    color: #333;
}
.transparency-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}
.transparency-excerpt {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 20px;
    line-height: 1.6;
}
.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: #8a489f;
    color: #fff;
}
.btn-primary:hover {
    background: #5D0A6B;
    color: #e4dbf5;
}
.btn-secondary {
    background: #e4dbf5;
    color: #5D0A6B;
}
.btn-secondary:hover {
    background: #d8c6ec;
    color: #5D0A6B;
}

.transparency-subtitle {
    text-align: center;
    font-size: 1em;
    color: #666;
    margin-top: -20px;
    margin-bottom: 40px;
}

@media (max-width: 800px) {

    .transparency-section {

        padding: 30px 0;
    }

    .transparency-title {

        line-height: 35px;
    }

    .transparency-content h3 {
        font-size: 19px;
        line-height: 25px;
    }

}