/* CRM Product Page Styles */

/* Product Hero Section */
.product-hero {
    margin-top: 80px;
    padding: 4rem 5%;
    color: white;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.product-hero h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.product-hero .subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.product-hero .tagline {
    font-size: 1.1rem;
    font-weight: 400;
    margin-top: 2rem;
    opacity: 0.9;
}

/* Intro Section */
.intro-section {
    padding: 5rem 5%;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

/* Service/Benefit Cards Hover Effect */
.section div[style*="background: white"][style*="padding: 2.5rem 2rem"]:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2rem;
    }

    .product-hero .subtitle {
        font-size: 1.1rem;
    }

    .intro-section {
        padding: 3rem 5%;
    }

    .intro-content h2 {
        font-size: 1.5rem;
    }

    .intro-content p {
        font-size: 1rem;
    }
}