.company-info-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.company-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.company-intro h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.company-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #505965;
}

.products-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.product-category {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.product-category h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4caf50;
}

.product-category p {
    color: #505965;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-category h4 {
    color: #388e3c;
    margin: 20px 0 15px;
    font-size: 1.2rem;
}

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

.product-category ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #505965;
}

.product-category ul li:last-child {
    border-bottom: none;
}

.advantages {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.advantages h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
}

.advantages ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
}

.advantages li {
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #505965;
    position: relative;
    padding-left: 35px;
}

.advantages li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    color: #4caf50;
    font-weight: bold;
}

.contact-cta {
    text-align: center;
    padding: 30px;
    background: #4caf50;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-cta p {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.company-motto {
    text-align: center;
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 500;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .products-overview {
        grid-template-columns: 1fr;
    }

    .company-intro h2 {
        font-size: 1.8rem;
    }

    .advantages {
        padding: 20px;
    }

    .advantages ul {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        padding: 20px;
    }

    .contact-cta p {
        font-size: 1.1rem;
    }
} 