.automationproductcontainer {
    /* margin: 0 auto;
    padding: 10px; */
}

#productsectors h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.sector-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.automationproductcontainer h3 {
    font-size: 20px;
    margin: 20px;
}

.sector-card {
    width: 30%;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.sector-card h3 {
    color: #003366;
    font-size: 18px;
    margin: 20px 0px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-card p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .sector-card {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .sector-card {
        width: 100%;
    }

    #productsectors h2 {
        font-size: 23px;


    }
}