.installers-layout {
    padding: 40px 0;
}

.hero-section {
    text-align: center;
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

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

.benefits-section,
.steps-section {
    margin-bottom: 60px;
}

.benefits-section h2,
.steps-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 15px;
}

.step-card p {
    color: #666;
    line-height: 1.5;
}

.contact-section {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    color: #666;
    margin-bottom: 30px;
}

.contact-btn--large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

/* Product Overview Styles */
.product-overview {
    margin-bottom: 60px;
}

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-category {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-category img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
}

.view-more {
    display: inline-block;
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: #388e3c;
}

/* Technical Specs Styles */
.technical-specs {
    margin-bottom: 60px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.spec-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spec-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4caf50;
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    margin-bottom: 10px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.spec-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4caf50;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .installers-layout {
        padding: 20px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .benefits-section h2,
    .steps-section h2 {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .steps-grid {
        gap: 20px;
    }

    .benefit-card,
    .step-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .benefits-section h2,
    .steps-section h2 {
        font-size: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .contact-section {
        padding: 40px 20px;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-category {
        flex-direction: column;
    }

    .product-category img {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .technical-specs {
        padding: 30px 20px;
    }

    .product-category {
        padding: 20px;
    }

    .product-category img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .product-features li {
        font-size: 0.9rem;
    }

    .spec-card {
        padding: 20px;
    }

    .product-category img {
        height: 180px;
    }
} 