/* Maxi Maja Homepage Styles */
.home-intro {
    padding: 60px 0;
    background: #f8f9fa;
}

.home-intro__header {
    text-align: center;
    margin-bottom: 50px;
}

.home-intro__heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.brand-accent {
    color: #3498db !important;
}

.home-intro__tagline {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.feature li:before {
    content: "✓";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.home-intro__usp {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.home-intro__subheading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.usp-list {
    list-style: none;
    padding: 0;
}

.usp-list li {
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #3498db;
}

.usp-list strong {
    color: #2c3e50;
}

.home-intro__promise {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-intro__promise p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.homepage-features {
    padding: 60px 0;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-intro__heading {
        font-size: 2rem;
    }

    .home-intro__tagline {
        font-size: 1rem;
    }

    .home-intro__usp,
    .home-intro__promise {
        padding: 20px;
    }
}