 
    
    :root {
        --primary: #006064; /* Dark teal */
        --secondary: #00838f; /* Medium teal */
        --accent: #ff6d00; /* Orange accent */
        --light: #e0f7fa; /* Light teal */
        --dark: #004d40; /* Dark green */
        --success: #00bfa5; /* Bright teal */
        --text: #333;
        --text-light: #666;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
        background-color: #f5f7fa;
        color: var(--text);
        line-height: 1.6;
        padding: 0;
    }
    
    .product-detail-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 30px 20px;
    }
    
    .product-header {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .product-icon-container {
        flex: 0 0 280px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: fit-content;
    }
    
    .product-icon {
        width: 150px;
        height: 150px;
        background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%); /* Green gradient */
        border-radius: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
        100% { transform: translateY(0px); }
    }
    
    .product-icon i {
        font-size: 70px;
        color: white;
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .product-badge {
        display: inline-block;
        background-color: #FF9800; /* Orange accent */
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 5px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        cursor: pointer;
        border: none;
        font-size: 16px;
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%); /* Green gradient */
        color: white;
    }
    
    .btn-primary:hover {
        background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%); /* Darker green gradient */
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline {
        background-color: transparent;
        border: 2px solid #4CAF50;
        color: #4CAF50;
    }
    
    .btn-outline:hover {
        background-color: #4CAF50;
        color: white;
    }
    
    .product-info {
        flex: 1;
        min-width: 400px;
    }
    
    .product-title {
        font-size: 36px;
        color: #2E7D32; /* Dark green */
        margin-bottom: 15px;
    }
    
    .product-subtitle {
        font-size: 18px;
        color: var(--text-light);
        margin-bottom: 20px;
    }
    
    .product-description {
        background: white;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
        color: #2E7D32; /* Dark green */
        position: relative;
        padding-bottom: 10px;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background-color: #4CAF50; /* Medium green */
    }
    
    .coverage-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .coverage-table th, .coverage-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .coverage-table th {
        background-color: #E8F5E9; /* Light green */
        color: #2E7D32; /* Dark green */
        font-weight: 600;
    }
    
    .coverage-table tr:nth-child(even) {
        background-color: #f8f9fa;
    }
    
    .coverage-table td i.fa-check {
        color: #4CAF50; /* Green */
    }
    
    .coverage-table td i.fa-times {
        color: #FF9800; /* Orange */
    }
    
    .cta-section {
        background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%); /* Green gradient */
        color: white;
        padding: 40px;
        border-radius: 8px;
        text-align: center;
        margin-top: 60px;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }
    
    .modal-content {
        background-color: white;
        margin: 5% auto;
        padding: 30px;
        border-radius: 8px;
        max-width: 800px;
        width: 90%;
        position: relative;
        animation: modalopen 0.4s;
    }
    
    @keyframes modalopen {
        from {
            opacity: 0;
            transform: translateY(-50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .close-modal {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 24px;
        color: var(--text-light);
        cursor: pointer;
        transition: color 0.3s;
    }
    
    .close-modal:hover {
        color: #FF9800; /* Orange */
    }
    
    .modal-image {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }
    
    @media (max-width: 768px) {
        .product-header {
            flex-direction: column;
        }
        
        .product-icon-container {
            flex: 1;
        }
        
        .feature-list {
            grid-template-columns: 1fr;
        }
        
        .plan-container {
            flex-direction: column;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .btn {
            width: 100%;
            max-width: 300px;
        }
    }

    