/* simplified fire products section coding */

#fire-products {
    padding-bottom: 50px;
}

/* Hero Box (Classic simple style) */
.hero-box {
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 50px;
}

.hero-box img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(0.6);
}

.hero-box .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
}

.hero-box .overlay-text h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-box .overlay-text button {
    padding: 10px 25px;
    background-color: #2563eb;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-box .overlay-text button:hover {
    background-color: #1d4ed8;
}

.hero-box .overlay-text button a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

/* Alternating Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 15px;
}

.content-section img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.alternate {
    background-color: #f7fafc;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

/* Product Details Grid */
.product-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-item h3 {
    font-size: 1.25rem;
    color: #2563eb;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-item p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Key Features Info Cards */
.info-card {
    padding: 20px;
    background: #edf2f7;
    border-radius: 8px;
    height: 100%;
}

.info-card h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Lists and Industries */
.simple-list {
    list-style: none;
    padding: 0;
}

.simple-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #4a5568;
}

.simple-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.industries-list span {
    background: #ebf4ff;
    color: #2b6cb0;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Simple CTA */
.cta-section-simple hr {
    margin-bottom: 50px;
    opacity: 0.1;
}

.cta-section-simple h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.cta-section-simple p {
    color: #718096;
    max-width: 700px;
    margin: 20px auto;
}

@media (max-width: 768px) {
    .hero-box .overlay-text h4 {
        font-size: 1.8rem;
    }
    .content-section {
        text-align: center;
        padding: 40px 0;
    }
    .content-section img {
        margin-bottom: 25px;
    }
}
