body {
    font-family: Arial, sans-serif;
}
.header-blog {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}
.content {
    width: 80%;
    margin: 20px auto;
}
.content img {
    width: 100%;
    height: auto;
}
.section {
    margin-bottom: 40px;
}
.recommended-products {
    display: flex;
    justify-content: space-around;
    margin: 40px 0;
}
.product {
    text-align: center;
}
.footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
}
.titulo {
    font-size: 1.2em;
    font-weight: bold;
}

.descripcion {
    font-size: 0.9em;
}

.item {
    position: relative;
    overflow: hidden;
}

.item img {
    width: 100%;
    display: block;
}

.item-info {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.9em;
}

.item-info .titulo {
    font-weight: bold;
}


h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

#contactForm {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-success:hover {
    background-color: #218838;
}
h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 10px;
}

p {
    font-size: 1rem;
    color: #6c757d;
}

.fa-2x {
    color: #000;
}