/*
Theme Name: KONTTO Child
Template: avantage
Version: 1.0
Description: Child theme pentru KONTTO - optimizat SEO
*/

@import url("../avantage/style.css");

/* ===== SEO OPTIMIZATIONS KONTTO ===== */

/* Homepage specific styling */
.kontto-homepage h1 {
    font-size: 2.5em !important;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.kontto-homepage h2 {
    color: #34495e;
    margin: 35px 0 20px 0;
    font-size: 1.8em;
    line-height: 1.3;
    font-weight: 600;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.kontto-homepage h3 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    font-size: 1.4em;
    line-height: 1.4;
    font-weight: 500;
}

/* Services list optimization */
.kontto-services-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.kontto-services-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    line-height: 1.6;
    font-size: 16px;
}

.kontto-services-list li:last-child {
    border-bottom: none;
}

.kontto-services-list li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    margin: 50px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.faq h2 {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 15px;
}

/* Contact info styling */
.kontto-contact-info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
}

/* CTA Buttons */
.kontto-cta {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 20px 10px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.kontto-cta:hover {
    background: linear-gradient(135deg, #219a52 0%, #1e8449 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Responsive optimizations */
@media (max-width: 768px) {
    .kontto-homepage h1 {
        font-size: 2em !important;
    }
    
    .kontto-homepage h2 {
        font-size: 1.5em;
    }
    
    .faq {
        padding: 20px;
        margin: 30px 0;
    }
    
    .kontto-cta {
        display: block;
        text-align: center;
        margin: 10px 0;
    }
}