﻿.about_section {
    background-color: #f9f9f9; /* Fondo claro para la sección */
    padding: 60px 0; /* Espaciado superior e inferior */
}

.about_taital {
    text-align: center;
    color: #19e9d9; /* Color personalizado para el título */
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
}

.about_text {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.about_card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.about_icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.about_card_title {
    color: #19e9d9; /* Color personalizado para los títulos de las tarjetas */
    margin-bottom: 15px;
}

.about_card_text {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.about_card_list {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

    .about_card_list li {
        margin-bottom: 10px;
    }

.testimonial {
    background-color: #f1f1f1;
    border-left: 5px solid #19e9d9; /* Color personalizado para el borde */
    padding: 15px;
    margin-top: 20px;
}

    .testimonial p {
        font-style: italic;
        color: #555;
    }

    .testimonial .author {
        font-weight: bold;
        text-align: right;
        margin-top: 10px;
    }

.btn-primary {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }
