#about {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.about-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.about-card {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    padding: 20px;
    border: 2px solid black;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:last-child {
    margin-bottom: 0;
}

.about-card:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.about-card .material-symbols-outlined {
    font-size: 2rem;
    color: #1976D2;
}

.about-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    text-align: center;
    margin: 0;
}

.about-card .title {
    min-width: 200px;
    text-align: left;
    margin-left: 20px;
}

.about-card .text {
    width: 100%;
    text-align: left;
}

.about-content {
    text-align: center;
    width: 100%;
}