        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #f8f9fa;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden; 
        }

        html {
            overflow-x: hidden;
        }
      
        .wrapper-main {
            max-width: 1500px;
            margin: 0 auto;
            padding: 20px;
        }

        .navigation-path {
            font-size: 14px;
            color: #0066cc;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .navigation-path a {
            color: #0066cc;
            text-decoration: none;
        }

        .navigation-path a:hover {
            text-decoration: underline;
        }

        .navigation-path span {
            color: #0066cc;
        }

        .heading-primary {
            font-size: 28px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.3;
            font-family: "Cambria", serif;
        }

        .heading-secondary {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
        }

        .author-note {
            font-style: italic;
            color: #555;
            margin-top: -5px;
            margin-bottom: 20px;
            text-align: left;
            }


        .layout-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 30px;
            margin-bottom: 30px;
        }

        .section-primary {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .metric-showcase {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 30px;
            text-align: center;
        }

        .metric-value {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .metric-description {
            font-size: 18px;
            opacity: 0.95;
        }

        .text-content {
            font-size: 15px;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .visualization-area {
            background: #fafafa;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .graph-image {
            max-width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .alert-box {
            margin: 30px 0;
            padding: 20px;
            background: #f8f9ff;
            border-left: 4px solid #667eea;
            border-radius: 4px;
        }

        .alert-box h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #1a1a1a;
            font-family: "Cambria", serif;
        }

        .alert-box p {
            font-size: 16.5px;
            color: #666;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .button-more-info {
            background: #667eea;
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .button-more-info:hover {
            background: #5568d3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .panel-aside {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .download-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .download-title {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .download-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .download-btn {
            position: relative;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            padding: 10px 30px 10px 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #333;
        }

        .download-btn:hover {
            border-color: #667eea;
            background: #f8f9ff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .download-btn::after {
            content: '⋮';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: #333;
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            line-height: 1;
        }

        .download-icon {
            width: 20px;
            height: 20px;
        }

        .widget-box {
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .widget-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        }

        .widget-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1a1a1a;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0f0f0;
        }

        .stat-item {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-label {
            font-size: 13px;
            color: #888;
            margin-bottom: 5px;
        }

        .stat-figure {
            font-size: 20px;
            font-weight: 700;
            color: #333;
        }

        .tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .tag-badge {
            background: #e8eaf6;
            color: #5e35b1;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
        }

        .link-list {
            list-style: none;
        }

        .link-list li {
            margin-bottom: 12px;
        }

        .link-list a {
            color: #0066cc;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .link-list a:hover {
            color: #0052a3;
            text-decoration: underline;
        }

        .footnote-text {
            font-size: 13px;
            color: #888;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            line-height: 1.6;
        }

        /* Modal Styles */
          .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 12px;
            padding: 35px;
            max-width: 550px;
            width: 90%;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
        }

        .modal-requirement {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .modal-requirement-icon {
            width: 20px;
            height: 20px;
            background: #4CAF50;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .modal-requirement-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .modal-requirement-text {
            font-size: 14px;
            color: #333;
            line-height: 1.5;
        }

        .modal-requirement-text strong {
            font-weight: 600;
        }

        .modal-account-section {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
            font-size: 14px;
            color: #555;
        }

        .modal-link {
            color: #00bcd4;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }

        .modal-link:hover {
            text-decoration: underline;
        }

        .modal-actions {
            margin-top: 25px;
            display: flex;
            gap: 10px;
        }

        .modal-button {
            flex: 1;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-button-primary {
            background: #667eea;
            color: white;
        }

        .modal-button-primary:hover {
            background: #5568d3;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

        .modal-button-secondary {
            background: #f0f0f0;
            color: #333;
        }

        .modal-button-secondary:hover {
            background: #e0e0e0;
        }

        @media (max-width: 968px) {
            .layout-grid {
                grid-template-columns: 1fr;
            }

            .panel-aside {
                order: -1;
            }

            .section-primary {
                order: 2;
            }
        }

        @media (max-width: 640px) {
            .wrapper-main {
                padding: 15px;
            }

            .heading-primary {
                font-size: 24px;
            }

            .metric-value {
                font-size: 40px;
            }

            .metric-showcase {
                padding: 30px 20px;
            }

            .section-primary {
                padding: 20px;
            }

            .widget-box {
                padding: 20px;
            }

            .download-buttons {
                flex-direction: column;
            }

            .download-btn {
                width: 100%;
            }

            .modal-content {
                padding: 25px;
            }

            .modal-actions {
                flex-direction: column;
            }
        }

        /* Modal Primary Actions */
.modal-primary-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-action-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.modal-action-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-action-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.modal-action-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.modal-action-secondary:hover {
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.modal-btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Update existing modal styles for better responsiveness */
.modal-content {
    background: white;
    border-radius: 12px;
    padding: 35px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-action-btn {
    text-decoration: none; /* Remove underline from links */
}

@media (max-width: 640px) {
    .modal-content {
        padding: 25px 20px;
        width: 95%;
    }

    .modal-header {
        font-size: 18px;
    }

    .modal-action-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .modal-btn-icon {
        width: 18px;
        height: 18px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-action-btn {
        font-size: 12px;
        padding: 10px 14px;
    }
}