.survey-types {
    padding: 5rem 2rem;
    background: var(--light);
    padding: 100px 0 50px 0;
}

.type-grid, .example-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 0 30px 0;
}

.type-link{
    font-size: small;
}

.type-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.type-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.type-header {
    padding: 1.5rem;
    color: white;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    background-color: var(--card-title);
}
.type-header h3{
    font-size: 1.2rem;
}
/*            .market-research {
                background: linear-gradient(135deg, #4361ee, #3a0ca3);
            }
            .education {
                background: linear-gradient(135deg, #4cc9f0, #4895ef);
            }
            .vote-poll {
                background: linear-gradient(135deg, #f72585, #b5179e);
            }
            .general {
                background: linear-gradient(135deg, #7209b7, #560bad);
            }*/

.type-body {
    padding: 1.5rem;
}

.qrcode-body {
    text-align: center;
}

.type-body h3 {
    margin-bottom: 1rem;
}

.type-body ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.type-body li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.type-body li:last-child {
    border-bottom: none;
}

.type-body li i {
    color: var(--primary);
}
