.gft-role-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.gft-role-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.gft-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #555;
}
.gft-categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}
.gft-cat-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 30px 20px;
    border-radius: 12px;
    width: calc(33.333% - 24px);
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.gft-cat-card:hover {
    transform: translateY(-5px);
}
.gft-cat-card i {
    font-size: 2.5rem;
    font-style: normal;
}
.gft-cat-card span {
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}
.gft-cat-desc {
	font-size: 0.95rem;
	font-weight: 400;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.gft-outro {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: #444;
    font-style: italic;
    background: #f9f9f9;
    padding: 20px;
    border-left: 4px solid #4caf50;
}

@media (max-width: 768px) {
    .gft-cat-card {
        width: calc(50% - 24px);
    }
}
@media (max-width: 480px) {
    .gft-cat-card {
        width: 100%;
    }
}