.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.intro-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

span{
    font: bold;
}

.about-content .about-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.about-content .about-item img {
    width: 100%;
    max-width: 170px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-content .text-content {
    flex: 1;
    text-align: left;
}

.about-content .text-content p {
    font-size: 1.1rem;
    color: #555;
}

.about-item .text-content a button{
    background-color: #fff;
    border: 1px solid black;
    border-radius: 8px 8px;
}

.about-item .text-content a button:hover{
    background-color: #2c2c2c;
    color: #eaeaea;
}

.about-item.reverse {
    flex-direction: row-reverse;
}

.about-values {
    margin-top: 40px;
    margin-bottom: 40px;
}

.about-values h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.value-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(25% - 20px);
    max-width: 200px;
}

.value-item img {
    width: 50px;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 1rem;
    color: #333;
}

.about-item .text-content p span{
    font-weight: bold;
}

@media (max-width: 768px) {
    .about-content .about-item {
        flex-direction: column;
    }

    .about-item.reverse {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
    }

    .value-item {
        max-width: 100%;
    }
}