    /* SIP Calculator Specific Styles - Scoped to avoid conflicts */
    .sip-calculator-wrapper {
        --sip-primary: #50c879;
        --sip-secondary: #2a1f76;
        --sip-light: #f8f6fe;
        --sip-white: #ffffff;
        --sip-dark: #1a1a2e;
        --sip-gray: #6c757d;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .sip-calculator-wrapper * {
        box-sizing: border-box;
    }

    /* Hero Section */
    .sip-hero-section {
        background: linear-gradient(135deg, var(--sip-secondary) 0%, #4a3a96 100%);
        padding: 60px 0;
        color: var(--sip-white);
        position: relative;
        overflow: hidden;
    }

    .sip-hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 60%;
        height: 200%;
        background: rgba(80, 200, 121, 0.1);
        border-radius: 50%;
        transform: rotate(-15deg);
    }

    .sip-hero-section h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

    .sip-hero-section p {
        font-size: 1.2rem;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .sip-rating-badge {
        background: rgba(255, 255, 255, 0.15);
        padding: 10px 20px;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        backdrop-filter: blur(10px);
    }

    .sip-rating-badge i {
        color: #ffc107;
    }

    /* Calculator Card */
    .sip-calculator-card {
        background: var(--sip-white);
        border-radius: 20px;
        box-shadow: 0 10px 60px rgba(42, 31, 118, 0.15);
        padding: 40px;
        margin-top: -40px;
        position: relative;
        z-index: 10;
    }

    .sip-calculator-card .sip-card-title {
        color: var(--sip-secondary);
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sip-calculator-card .sip-card-title i {
        color: var(--sip-primary);
    }

    /* Input Groups */
    .sip-input-group {
        margin-bottom: 30px;
    }

    .sip-input-group label {
        font-weight: 600;
        color: var(--sip-secondary);
        margin-bottom: 10px;
        display: block;
        font-size: 0.95rem;
    }

    .sip-input-group label i {
        color: var(--sip-primary);
        margin-right: 8px;
    }

    .sip-input-field {
        position: relative;
    }

    .sip-input-field input {
        width: 100%;
        padding: 15px 20px;
        padding-left: 50px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--sip-secondary);
        transition: all 0.3s ease;
    }

    .sip-input-field input:focus {
        border-color: var(--sip-primary);
        box-shadow: 0 0 0 4px rgba(80, 200, 121, 0.15);
        outline: none;
    }

    .sip-input-field .sip-currency-symbol {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--sip-gray);
        font-weight: 600;
        font-size: 1.1rem;
    }

    /* Range Slider */
    .sip-range-slider {
        width: 100%;
        height: 8px;
        border-radius: 4px;
        background: linear-gradient(to right, var(--sip-primary) 0%, #e0e0e0 0%);
        outline: none;
        -webkit-appearance: none;
        margin-top: 15px;
    }

    .sip-range-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--sip-primary);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(80, 200, 121, 0.4);
        border: 3px solid var(--sip-white);
        transition: transform 0.2s ease;
    }

    .sip-range-slider::-webkit-slider-thumb:hover {
        transform: scale(1.1);
    }

    .sip-range-slider::-moz-range-thumb {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--sip-primary);
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(80, 200, 121, 0.4);
        border: 3px solid var(--sip-white);
    }

    .sip-range-values {
        display: flex;
        justify-content: space-between;
        margin-top: 8px;
        color: var(--sip-gray);
        font-size: 0.85rem;
    }

    /* Calculate Button */
    .sip-calculate-btn {
        background: linear-gradient(135deg, var(--sip-primary) 0%, #3da861 100%);
        color: var(--sip-white);
        border: none;
        padding: 18px 40px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        width: 100%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 8px 25px rgba(80, 200, 121, 0.35);
    }

    .sip-calculate-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(80, 200, 121, 0.45);
        background: linear-gradient(135deg, #3da861 0%, var(--sip-primary) 100%);
    }

    .sip-reset-btn {
        background: var(--sip-light);
        color: var(--sip-secondary);
        border: 2px solid var(--sip-secondary);
        padding: 18px 40px;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
        width: 100%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    .sip-reset-btn:hover {
        background: var(--sip-secondary);
        color: var(--sip-white);
    }

    /* Results Section */
    .sip-results-card {
        background: linear-gradient(135deg, var(--sip-light) 0%, var(--sip-white) 100%);
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        border: 2px solid rgba(80, 200, 121, 0.2);
    }

    .sip-result-item {
        background: var(--sip-white);
        border-radius: 15px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(42, 31, 118, 0.08);
        transition: transform 0.3s ease;
    }

    .sip-result-item:hover {
        transform: translateY(-5px);
    }

    .sip-result-item.sip-primary-result {
        background: linear-gradient(135deg, var(--sip-secondary) 0%, #4a3a96 100%);
        color: var(--sip-white);
    }

    .sip-result-label {
        font-size: 0.9rem;
        color: var(--sip-gray);
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sip-result-item.sip-primary-result .sip-result-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .sip-result-value {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--sip-secondary);
    }

    .sip-result-item.sip-primary-result .sip-result-value {
        color: var(--sip-white);
    }

    .sip-result-item.sip-highlight {
        border-left: 4px solid var(--sip-primary);
    }

    /* Chart Container */
    .sip-chart-container {
        background: var(--sip-white);
        border-radius: 20px;
        padding: 30px;
        margin-top: 40px;
        box-shadow: 0 10px 40px rgba(42, 31, 118, 0.1);
    }

    .sip-chart-title {
        color: var(--sip-secondary);
        font-weight: 700;
        font-size: 1.3rem;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .sip-chart-title i {
        color: var(--sip-primary);
    }

    .sip-chart-wrapper {
        position: relative;
        height: 300px;
    }

    /* Ad Space */
    .sip-ad-space {
        background: linear-gradient(135deg, var(--sip-light) 0%, #e8e4f7 100%);
        border-radius: 15px;
        padding: 20px;
        text-align: center;
        min-height: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 2px dashed #ccc;
        position: sticky;
        top: 20px;
    }

    .sip-ad-space-label {
        color: var(--sip-gray);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    /* Content Section */
    .sip-content-section {
        background: var(--sip-white);
        padding: 60px 0;
    }

    .sip-content-card {
        background: var(--sip-light);
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
    }

    .sip-content-card h2 {
        color: var(--sip-secondary);
        font-weight: 700;
        font-size: 1.8rem;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .sip-content-card h2 i {
        color: var(--sip-primary);
    }

    .sip-content-card h3 {
        color: var(--sip-secondary);
        font-weight: 600;
        font-size: 1.3rem;
        margin: 25px 0 15px;
    }

    .sip-content-card p {
        color: #555;
        line-height: 1.8;
        font-size: 1.05rem;
    }

    .sip-content-card ul {
        list-style: none;
        padding: 0;
    }

    .sip-content-card ul li {
        padding: 12px 0;
        padding-left: 35px;
        position: relative;
        color: #555;
        line-height: 1.7;
    }

    .sip-content-card ul li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        color: var(--sip-primary);
        background: rgba(80, 200, 121, 0.15);
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
    }

    /* FAQ Section */
    .sip-faq-section {
        background: var(--sip-light);
        padding: 60px 0;
    }

    .sip-faq-item {
        background: var(--sip-white);
        border-radius: 15px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(42, 31, 118, 0.08);
    }

    .sip-faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        color: var(--sip-secondary);
        transition: all 0.3s ease;
    }

    .sip-faq-question:hover {
        background: rgba(80, 200, 121, 0.05);
    }

    .sip-faq-question i {
        color: var(--sip-primary);
        transition: transform 0.3s ease;
    }

    .sip-faq-question.active i {
        transform: rotate(180deg);
    }

    .sip-faq-answer {
        padding: 0 25px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        color: #555;
        line-height: 1.8;
    }

    .sip-faq-answer.active {
        padding: 0 25px 20px;
        max-height: 500px;
    }

    /* Feature Cards */
    .sip-feature-card {
        background: var(--sip-white);
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        height: 100%;
        box-shadow: 0 5px 25px rgba(42, 31, 118, 0.08);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .sip-feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--sip-primary);
    }

    .sip-feature-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--sip-primary) 0%, #3da861 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: var(--sip-white);
        font-size: 1.8rem;
    }

    .sip-feature-card h4 {
        color: var(--sip-secondary);
        font-weight: 700;
        margin-bottom: 15px;
    }

    .sip-feature-card p {
        color: var(--sip-gray);
        font-size: 0.95rem;
    }

    /* Modal/Popup Styles */
    .sip-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(42, 31, 118, 0.8);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        backdrop-filter: blur(5px);
    }

    .sip-modal-overlay.active {
        display: flex;
    }

    .sip-modal-content {
        background: var(--sip-white);
        border-radius: 20px;
        padding: 40px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        animation: sipModalSlideIn 0.3s ease;
        position: relative;
    }

    @keyframes sipModalSlideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .sip-modal-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2.5rem;
    }

    .sip-modal-icon.success {
        background: rgba(80, 200, 121, 0.15);
        color: var(--sip-primary);
    }

    .sip-modal-icon.error {
        background: rgba(220, 53, 69, 0.15);
        color: #dc3545;
    }

    .sip-modal-title {
        color: var(--sip-secondary);
        font-weight: 700;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .sip-modal-message {
        color: var(--sip-gray);
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .sip-modal-close {
        background: linear-gradient(135deg, var(--sip-primary) 0%, #3da861 100%);
        color: var(--sip-white);
        border: none;
        padding: 12px 40px;
        border-radius: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .sip-modal-close:hover {
        transform: scale(1.05);
    }

    /* Currency Toggle */
    .sip-currency-toggle {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .sip-currency-btn {
        padding: 10px 20px;
        border: 2px solid var(--sip-secondary);
        background: var(--sip-white);
        color: var(--sip-secondary);
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .sip-currency-btn.active,
    .sip-currency-btn:hover {
        background: var(--sip-secondary);
        color: var(--sip-white);
    }

    /* Related Tools */
    .sip-related-tools {
        background: var(--sip-secondary);
        padding: 60px 0;
    }

    .sip-related-tools h2 {
        color: var(--sip-white);
        text-align: center;
        margin-bottom: 40px;
        font-weight: 700;
    }

    .sip-tool-link {
        display: block;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 25px;
        text-decoration: none;
        color: var(--sip-white);
        transition: all 0.3s ease;
        text-align: center;
        backdrop-filter: blur(10px);
    }

    .sip-tool-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
        color: var(--sip-white);
    }

    .sip-tool-link i {
        font-size: 2rem;
        color: var(--sip-primary);
        margin-bottom: 15px;
        display: block;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
        .sip-ad-space {
            min-height: 250px;
            position: static;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 768px) {
        .sip-hero-section h1 {
            font-size: 2rem;
        }
        
        .sip-calculator-card {
            padding: 25px;
            margin-top: -20px;
        }
        
        .sip-result-value {
            font-size: 1.4rem;
        }
        
        .sip-chart-wrapper {
            height: 250px;
        }
    }

    /* Year by Year Table */
    .sip-yearly-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .sip-yearly-table th {
        background: var(--sip-secondary);
        color: var(--sip-white);
        padding: 15px;
        text-align: center;
        font-weight: 600;
    }

    .sip-yearly-table td {
        padding: 12px 15px;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .sip-yearly-table tr:nth-child(even) {
        background: var(--sip-light);
    }

    .sip-yearly-table tr:hover {
        background: rgba(80, 200, 121, 0.1);
    }

    /* Progress Animation */
    .sip-calculating {
        display: none;
        align-items: center;
        gap: 10px;
    }

    .sip-calculating.active {
        display: flex;
    }

    .sip-spinner {
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top-color: var(--sip-white);
        border-radius: 50%;
        animation: sipSpin 1s linear infinite;
    }

    @keyframes sipSpin {
        to {
            transform: rotate(360deg);
        }
    }

    /* Breadcrumb */
    .sip-breadcrumb {
        background: transparent;
        padding: 15px 0;
    }

    .sip-breadcrumb a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
    }

    .sip-breadcrumb a:hover {
        color: var(--sip-white);
    }

    .sip-breadcrumb span {
        color: var(--sip-primary);
    }

    /* Tooltip */
    .sip-tooltip {
        position: relative;
        display: inline-block;
        cursor: help;
    }

    .sip-tooltip .sip-tooltip-text {
        visibility: hidden;
        background: var(--sip-secondary);
        color: var(--sip-white);
        text-align: center;
        padding: 10px 15px;
        border-radius: 8px;
        position: absolute;
        z-index: 100;
        bottom: 125%;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        font-size: 0.85rem;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .sip-tooltip:hover .sip-tooltip-text {
        visibility: visible;
        opacity: 1;
    }

    /* Print Styles */
    @media print {
        .sip-ad-space,
        .sip-calculate-btn,
        .sip-reset-btn {
            display: none !important;
        }
    }