.header-image-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.img-cabecera-full {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.intro-card {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    border: none;
}

.business-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-icon.visibility { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2381b2e5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle></svg>'); }
.feature-icon.reputation { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2381b2e5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9V5a3 3 0 0 0-3-3l-4 9v11h11.28a2 2 0 0 0 2-1.7l1.38-9a2 2 0 0 0-2-2.3zM7 22H4a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h3"></path></svg>'); }
.feature-icon.advertising { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2381b2e5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="20" x2="12" y2="10"></line><line x1="18" y1="20" x2="18" y2="4"></line><line x1="6" y1="20" x2="6" y2="16"></line></svg>'); }

.faq-section {
    margin-bottom: 60px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #444;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    padding: 20px;
}

.faq-item h4 {
    margin: 0 0 10px 0;
    color: #81b2e5;
}

.faq-item p {
    margin: 0;
    line-height: 1.5;
    color: #666;
}

.business-ctas {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 40px 0;
    border-top: 1px dashed #e6e6e6;
}

.business-ctas .button {
    padding: 15px 30px;
    font-size: 14px;
}

.button.hollow {
    background: transparent;
    color: #81b2e5;
    border: 1px solid #81b2e5;
}

.button.hollow:hover {
    background: #81b2e5;
    color: #fff;
}

@media (max-width: 768px) {
    .img-cabecera-full {
        height: 200px;
    }
    
    .intro-card {
        font-size: 1rem;
        padding: 20px;
    }

    .business-ctas {
        flex-direction: column;
        align-items: stretch;
    }
}
