/* General Container Styles */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Banner */
.hero-banner {
    background-image: url("../images/produtsheroimg/Protecto.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-container h1 {
    color: white;
    font-size: 2.1rem;
    margin-bottom: 10px;
    font-family: "Open Sans", Arial, sans-serif;
}

.hero-container p {
    font-size: 1.3rem;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .hero-container h1 {
        font-size: 1.9rem;
    }

    .hero-container p {
        font-size: 1.1rem;
    }
}

/* Product Overview */
.product-overview {
    background-color: #f9f9f9;
    padding: 40px 0;
}

.product-overview p {
    font-size: 1.3rem;
    color: #444;
    line-height: 1.7;
}

@media (max-width: 768px) {

    .product-overview p {
        font-size: 1.1rem;
    }
}

/* Unique Features Section */
.unique-features {
    padding: 40px 0;
}

.unique-features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.unique-left {
    width: 50%;
    margin-right: 1rem;
}

.unique-right {
    width: 50%;
    padding: 50px;
    box-shadow: inset 20px 10px 100px #bcbcbc;
}

.unique-left img {
    width: 100%;
}

.unique-right h2 {
    font-size: 2.1rem;
    font-weight: bold;
}

.unique-right ul {
    list-style-type: none;
    padding: 0;
}

.unique-right ul li {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .unique-features-container {
        flex-direction: column;
    }

    .unique-left,
    .unique-right {
        width: 100%;
    }

    .unique-right {
        padding: 20px;
    }
}

/* Why Choose Section */
.why-choose {
    background-color: #fff;
    padding: 40px 0;
}

.why-choose h2 {
    font-size: 2.1rem;
    color: rgb(23, 40, 82);
    margin-bottom: 30px;
}

.why-choose ul {
    list-style-type: none;
    padding: 0;
}

.why-choose ul li {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Closing Statement */
.closing-statement {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.closing-statement h2 {
    font-size: 2.1rem;
    color: rgb(23, 40, 82);
    margin-bottom: 20px;
}

.closing-statement p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}