.product-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    background-image: url('../images/business-hero-pattern.svg');
    background-size: cover;
    background-position: center;
}

.product-hero h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.product-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.product-details {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
    text-align: center;
}

.product-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

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

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
}

.product-features li:before {
    content: '✓';
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* Business page product section enhancements */
.business-products .product-section {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.business-products .product-section h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.business-products .product-section h3 a:hover {
    color: #007bff;
}

.business-products .product-list {
    margin: 15px 0;
}

.business-products .btn-outline {
    display: inline-block;
    margin-top: 15px;
}

/* Custom Generator Form Styles */
.custom-generator-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}

.custom-generator-section h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.custom-form-container {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero {
        padding: 60px 0;
    }

    .product-hero h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}