        /* --- Navbar Styles --- */
        .navbar {
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 100%;
            margin: 0 auto;
            padding: 10px 20px;
        }
        
        .navbar-logo a {
            font-size: 1.8rem;
            font-weight: bold;
            color: #007bff;
            text-decoration: none;
        }
        
        .navbar-links ul {
            list-style: none;
            display: flex;
            margin: 0;
            padding: 0;
        }
        
        .navbar-links ul li {
            margin-left: 30px;
        }
        
        .navbar-links ul li a {
            text-decoration: none;
            color: #333;
            font-size: 1rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-links ul li a:hover {
            color: #007bff;
        }
        
        /* Hamburger Menu - Hidden on Desktop */
        .menu-toggle {
            display: none;
        }
        
        .menu-icon {
            display: none;
            font-size: 2rem;
            cursor: pointer;
        }
        
        .language-switcher {
            margin-left: 20px;
        }
        
        .language-switcher a {
            text-decoration: none;
            color: #333;
        }
        
        /* --- Mobile Responsiveness --- */
        @media (max-width: 768px) {
            .navbar-container {
                position: relative;
            }
            
            .navbar-links {
                display: none;
                width: 100%;
                background-color: #ffffff;
                text-align: center;
                padding: 0;
                overflow: hidden;
                order: 3; /* Makes it appear below everything */
            }
            
            .navbar-links ul {
                flex-direction: column;
                align-items: center;
            }
            
            .navbar-links ul li {
                margin: 15px 0;
            }
            
            .menu-icon {
                display: block;
                order: 2;
            }
            
            /* When menu toggle is checked (opened) */
            .menu-toggle:checked ~ .navbar-links {
                display: block;
                padding: 20px 0;
            }
            
            .language-switcher {
                margin-left: 0;
                order: 1;
            }
        }
        @media (max-width: 600px) {
            .hero-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        
            .hero-buttons a {
                width: 80%;         /* or 100% if you prefer full width */
                max-width: 300px;   /* optional for design consistency */
                margin: 10px 0;     /* stack spacing */
                box-sizing: border-box;
            }   
        }
        
        /* ===== FOOTER (Updated to match modern dark look) ===== */
        
        :root {
            --footer-bg:rgb(34, 57, 69);
            --footer-text: #ffffffd9;
            --footer-muted: rgba(255, 255, 255, 0.6);
            --footer-accent: #3CE3C2;
            --footer-border: rgba(255, 255, 255, 0.1);
            --footer-transition: 0.3s ease;
        }
        
        #site-footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding-top: 60px;
            font-family: 'Segoe UI', sans-serif;
        }
        
        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: #fff;
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            font-weight: 600;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--footer-accent);
        }
        
        .footer-column h3 span {
            color: var(--footer-accent);
        }
        
        .company-info p {
            margin-bottom: 20px;
            color: var(--footer-muted);
            font-size: 15px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            color: var(--footer-text);
            transition: var(--footer-transition);
        }
        
        .social-links a:hover {
            background-color: var(--footer-accent);
            color: #000;
            transform: translateY(-3px);
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--footer-muted);
            text-decoration: none;
            font-size: 15px;
            transition: var(--footer-transition);
        }
        
        .footer-column ul li a:hover {
            color: var(--footer-accent);
            padding-left: 5px;
        }
        
        .contact-details address {
            font-style: normal;
            color: var(--footer-muted);
        }
        
        .contact-details p {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            font-size: 15px;
        }
        
        .contact-details i {
            margin-right: 10px;
            color: var(--footer-accent);
            margin-top: 4px;
        }
        
        .footer-bottom {
            border-top: 1px solid var(--footer-border);
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: var(--footer-muted);
        }
        
        .footer-bottom p {
            margin: 5px 0;
        }
        
        .footer-bottom a {
            color: var(--footer-accent);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        .footer-login {
            margin-top: 20px;
            text-align: center;
            color: var(--footer-text);
        }
        .links-section {
            margin-top: 8em;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .btn-link {
            background-color: #4682B4; /* Default color */
            color: white;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            transition: background-color 0.3s ease;
            display: inline-block;
        }
        
        .btn-link:hover {
            background-color: #366899;
        }
        
        /* Alternating colors: override nth-child styles */
        .btn-link:nth-child(2n) {
            background-color: #B4464B;
        }
        
        .btn-link:nth-child(2n):hover {
            background-color: #9F1717;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .page-banner {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
        }
        
        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.1;
        }
        
        .page-banner h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .page-banner p {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .page-content {
            padding: 40px 30px;
        }
        
        .validation-container {
            margin-bottom: 30px;
        }
        
        .error-alert {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .error-alert h3 {
            margin-bottom: 10px;
        }
        
        .error-alert ul {
            list-style: none;
        }
        
        .error-alert li {
            padding: 5px 0;
            padding-left: 20px;
            position: relative;
        }
        
        .error-alert li::before {
            content: '⚠';
            position: absolute;
            left: 0;
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group.full-width {
            grid-column: 1 / -1;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.95rem;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #e0e6ed;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
            background: white;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
            transform: translateY(-2px);
        }
        
        .form-group input:hover,
        .form-group select:hover,
        .form-group textarea:hover {
            border-color: #bdc3c7;
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%233498db" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 20px;
            padding-right: 50px;
        }
        
        .required-field {
            position: relative;
        }
        
        .required-field label::after {
            content: ' *';
            color: #e74c3c;
            font-weight: bold;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
            display: block;
            margin: 40px auto 0;
            min-width: 200px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
            background: linear-gradient(135deg, #2980b9, #3498db);
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .section-divider {
            border: none;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e0e6ed, transparent);
            margin: 40px 0;
        }
        
        .form-section {
            margin-bottom: 40px;
        }
        
        .form-section h3 {
            color: #2c3e50;
            font-size: 1.3rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
            position: relative;
        }
        
        .form-section h3::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: #3498db;
        }
        
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .page-banner {
                padding: 30px 20px;
            }
            
            .page-banner h1 {
                font-size: 2rem;
            }
            
            .page-content {
                padding: 30px 20px;
            }
            
            .container {
                margin: 10px;
                border-radius: 15px;
            }
        }
        
        .input-icon {
            position: relative;
        }
        
        .input-icon input {
            padding-left: 45px;
        }
        
        .input-icon::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.5;
            z-index: 1;
        }
        
        .loading {
            opacity: 0.7;
            pointer-events: none;
        }
        
        .loading .btn-primary {
            background: #bdc3c7;
            cursor: not-allowed;
        }
        
        * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
        
                body {
                    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    min-height: 100vh;
                    color: #333;
                }
        

        
                .user-info {
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                }
        
                .user-avatar {
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background: linear-gradient(135deg, #3498db, #2980b9);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    color: white;
                    font-weight: bold;
                }
        
                /* Main Content */
                .main-container {
                    max-width: 80%;
                    margin: 0 auto;
                    padding: 2rem;
                }
        
                .page-banner-dash {
                    text-align: center;
                    margin-bottom: 3rem;
                    background: rgba(255, 255, 255, 0.1);
                    backdrop-filter: blur(10px);
                    padding: 3rem 2rem;
                    border-radius: 20px;
                    border: 1px solid rgba(255, 255, 255, 0.2);
                }
        
                .page-banner-dash h1 {
                    font-size: 3rem;
                    color: white;
                    margin-bottom: 1rem;
                    font-weight: 700;
                    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
                }
        
                .page-banner-dash p {
                    font-size: 1.2rem;
                    color: rgba(255, 255, 255, 0.9);
                    font-weight: 300;
                }
        
                /* Dashboard Grid */
                .dashboard-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                    gap: 2rem;
                    margin-bottom: 3rem;
                }
        
                .dashboard-card {
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(10px);
                    border-radius: 20px;
                    padding: 2.5rem;
                    text-align: center;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    transition: all 0.3s ease;
                    position: relative;
                    overflow: hidden;
                }
        
                .dashboard-card::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    height: 4px;
                    background: linear-gradient(90deg, #3498db, #2980b9);
                }
        
                .dashboard-card:hover {
                    transform: translateY(-10px);
                    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                }
        
                .card-icon {
                    width: 80px;
                    height: 80px;
                    margin: 0 auto 1.5rem;
                    background: linear-gradient(135deg, #3498db, #2980b9);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 2rem;
                    color: white;
                    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
                }
        
                .card-title {
                    font-size: 1.5rem;
                    font-weight: 600;
                    color: #2c3e50;
                    margin-bottom: 1rem;
                }
        
                .card-description {
                    color: #7f8c8d;
                    margin-bottom: 2rem;
                    line-height: 1.6;
                }
        
                .card-button {
                    display: inline-block;
                    background: linear-gradient(135deg, #3498db, #2980b9);
                    color: white;
                    padding: 12px 30px;
                    border-radius: 50px;
                    text-decoration: none;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
                }
        
                .card-button:hover {
                    background: linear-gradient(135deg, #2980b9, #3498db);
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
                    color: white;
                    text-decoration: none;
                }
        
                .card-button.secondary {
                    background: linear-gradient(135deg, #27ae60, #2ecc71);
                    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
                }
        
                .card-button.secondary:hover {
                    background: linear-gradient(135deg, #2ecc71, #27ae60);
                    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
                }
                
                .card-button.terciary {
                    background: linear-gradient(135deg, #FF7518, #DF5A00);
                    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
                }
        
                .card-button.terciary:hover {
                    background: linear-gradient(135deg, #DF5A00, #FF7518);
                    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.4);
                }
        
                /* Stats Cards */
                .stats-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 1.5rem;
                    margin-bottom: 3rem;
                }
        
                .stat-card {
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(10px);
                    padding: 1.5rem;
                    border-radius: 15px;
                    text-align: center;
                    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                }
        
                .stat-number {
                    font-size: 2.5rem;
                    font-weight: 700;
                    color: #3498db;
                    display: block;
                }
        
                .stat-label {
                    color: #7f8c8d;
                    font-size: 0.9rem;
                    margin-top: 0.5rem;
                }
        
                /* Quick Actions */
                .quick-actions {
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(10px);
                    border-radius: 20px;
                    padding: 2rem;
                    margin-bottom: 2rem;
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                    border: 1px solid rgba(255, 255, 255, 0.2);
                }
        
                .quick-actions h3 {
                    color: #2c3e50;
                    margin-bottom: 1.5rem;
                    font-size: 1.3rem;
                }
        
                .action-links {
                    display: flex;
                    gap: 1rem;
                    flex-wrap: wrap;
                }
        
                .action-link {
                    padding: 8px 16px;
                    background: rgba(52, 152, 219, 0.1);
                    color: #3498db;
                    text-decoration: none;
                    border-radius: 25px;
                    font-size: 0.9rem;
                    transition: all 0.3s ease;
                    border: 1px solid rgba(52, 152, 219, 0.2);
                }
        
                .action-link:hover {
                    background: #3498db;
                    color: white;
                    text-decoration: none;
                }
        
                /* Logout Section */
                .logout-section {
                    text-align: center;
                    padding: 2rem;
                }
        
                .btn-logout {
                    background: linear-gradient(135deg, #e74c3c, #c0392b);
                    color: white;
                    padding: 12px 30px;
                    border-radius: 50px;
                    text-decoration: none;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                }
        
                .btn-logout:hover {
                    background: linear-gradient(135deg, #c0392b, #e74c3c);
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
                    color: white;
                    text-decoration: none;
                }
        
                /* Responsive Design */
                @media (max-width: 768px) {
                    .main-container {
                        padding: 1rem;
                    }
        
                    .page-banner {
                        padding: 2rem 1rem;
                    }
        
                    .page-banner h1 {
                        font-size: 2rem;
                    }
        
                    .dashboard-grid {
                        grid-template-columns: 1fr;
                    }
        
                    .header-content {
                        padding: 0 1rem;
                    }
        
                    .action-links {
                        justify-content: center;
                    }
                }
        
                /* Animations */
                @keyframes fadeInUp {
                    from {
                        opacity: 0;
                        transform: translateY(30px);
                    }
                    to {
                        opacity: 1;
                        transform: translateY(0);
                    }
                }
        
                .dashboard-card {
                    animation: fadeInUp 0.6s ease forwards;
                }
        
                .dashboard-card:nth-child(1) { animation-delay: 0.1s; }
                .dashboard-card:nth-child(2) { animation-delay: 0.2s; }
                .dashboard-card:nth-child(3) { animation-delay: 0.3s; }
        
                /* Loading States */
                .loading {
                    opacity: 0.7;
                    pointer-events: none;
                }
        
                
        
                
                
                .client-profiles-ep {
                    padding: 2rem;
                    max-width: 80%;
                    margin: 0 auto;
                    height:100vh;
                }
        
                .client_profile_header {
                    color: white;
                    font-size: 2.5rem;
                    font-weight: 300;
                    text-align: center;
                    margin-bottom: 0.5rem;
                }
        
                .subtitle {
                    color: rgba(255,255,255,0.8);
                    text-align: center;
                    margin-bottom: 3rem;
                    font-size: 1.1rem;
                }
        
                .profiles-grid-ep {
                    display: grid;
                    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                    gap: 1.5rem;
                    margin-bottom: 3rem;
                }
        
                .profile-card-ep {
                    background: white;
                    border-radius: 12px;
                    padding: 0;
                    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                    transition: all 0.3s ease;
                    overflow: hidden;
                    position: relative;
                }
        
                .profile-card-ep:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
                }
        
                .status-bar {
                    padding: 0.75rem 1.5rem;
                    font-weight: 600;
                    font-size: 0.85rem;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                    color: white;
                    
                }
        
                .status-bar.active {
                    background: linear-gradient(135deg, #4CAF50, #45a049);
                    
                }
        
                .status-bar.resolved {
                    background: linear-gradient(135deg, #2196F3, #1976D2);
                }
        
                .status-bar.archived {
                    background: linear-gradient(135deg, #757575, #616161);
                }
        
                .client-name {
                    padding: 1.5rem;
                    font-size: 1.3rem;
                    font-weight: 500;
                    color: #333;
                    text-align: center;
                    border-bottom: 1px solid #f0f0f0;
                }
        
                .edit-button {
                    padding: 1rem 1.5rem;
                    text-align: center;
                }
        
                .edit-button a {
                    display: inline-block;
                    background: linear-gradient(135deg, #4a90e2, #357abd);
                    color: white;
                    text-decoration: none;
                    padding: 0.75rem 2rem;
                    border-radius: 25px;
                    font-weight: 500;
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
                }
        
                .edit-button a:hover {
                    background: linear-gradient(135deg, #357abd, #2968a3);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
                }
        
                .no-profiles {
                    background: white;
                    padding: 3rem;
                    border-radius: 12px;
                    text-align: center;
                    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                    color: #666;
                    font-size: 1.1rem;
                }
        
                .report-download {
                    background: white;
                    padding: 2rem;
                    border-radius: 12px;
                    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
                    text-align: center;
                }
        
                .export-form {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 1rem;
                    flex-wrap: wrap;
                }
        
                .export-form label {
                    font-weight: 600;
                    color: #333;
                    font-size: 1.1rem;
                }
        
                .export-form select {
                    padding: 0.75rem 1rem;
                    border: 2px solid #e0e0e0;
                    border-radius: 8px;
                    font-size: 1rem;
                    background: white;
                    color: #333;
                    cursor: pointer;
                    transition: border-color 0.3s ease;
                }
        
                .export-form select:focus {
                    outline: none;
                    border-color: #4a90e2;
                }
        
                .btn-download {
                    background: linear-gradient(135deg, #4CAF50, #45a049);
                    color: white;
                    border: none;
                    padding: 0.75rem 1.5rem;
                    border-radius: 8px;
                    font-size: 1rem;
                    font-weight: 500;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
                }
        
                .btn-download:hover {
                    background: linear-gradient(135deg, #45a049, #3d8b40);
                    transform: translateY(-2px);
                    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
                }
        
                .stats-preview-ep {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                    gap: 1rem;
                    margin-bottom: 2rem;
                }
        
                .stat-card-ep {
                    background: rgba(255,255,255,0.15);
                    backdrop-filter: blur(10px);
                    padding: 1.5rem;
                    border-radius: 12px;
                    text-align: center;
                    color: white;
                    border: 1px solid rgba(255,255,255,0.2);
                }
        
                .stat-number-ep {
                    font-size: 2rem;
                    font-weight: 600;
                    margin-bottom: 0.5rem;
                }
        
                .stat-label-ep {
                    font-size: 0.9rem;
                    opacity: 0.9;
                }
        
                @media (max-width: 768px) {
                    .client-profiles-ep {
                        padding: 1rem;
                    }
                    
                    .client_profile_header {
                        font-size: 2rem;
                    }
                    
                    .export-form {
                        flex-direction: column;
                        gap: 1rem;
                    }
                    
                    .profiles-grid-ep {
                        grid-template-columns: 1fr;
                    }
                }