 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f0f2f5;
        }

        /* Header Bank Style */
        .bank-header {
            background: #003366;
            padding: 15px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .bank-logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bank-logo i {
            font-size: 32px;
            color: #ffcc00;
        }

        .bank-logo h1 {
            color: white;
            font-size: 24px;
            letter-spacing: 1px;
        }

        .bank-logo p {
            color: #ffcc00;
            font-size: 12px;
        }

        .bank-nav {
            display: flex;
            gap: 30px;
        }

        .bank-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .bank-nav a:hover {
            color: #ffcc00;
        }

        .bank-buttons {
            display: flex;
            gap: 15px;
        }

        .btn-bank {
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-login {
            background: transparent;
            border: 2px solid #ffcc00;
            color: #ffcc00;
        }

        .btn-login:hover {
            background: #ffcc00;
            color: #003366;
        }

        .btn-register {
            background: #ffcc00;
            color: #003366;
        }

        .btn-register:hover {
            background: #e6b800;
        }

        /* Hero Bank Section */
        .bank-hero {
            background: linear-gradient(135deg, #003366 0%, #002244 100%);
            padding: 80px 50px;
            color: white;
        }

        .bank-hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .bank-hero-text h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .bank-hero-text h1 span {
            color: #ffcc00;
        }

        .bank-hero-text p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .bank-features-list {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .bank-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .bank-feature-item i {
            color: #ffcc00;
            font-size: 20px;
        }

        .bank-hero-image {
            text-align: center;
        }

        .bank-hero-image i {
            font-size: 200px;
            color: #ffcc00;
            opacity: 0.8;
        }

        /* Services Section */
        .bank-services {
            padding: 80px 50px;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 36px;
            color: #003366;
            margin-bottom: 15px;
        }

        .section-header p {
            color: #666;
            font-size: 18px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
            background: #f8f9fa;
            transition: all 0.3s;
            border: 1px solid #e0e0e0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: #ffcc00;
        }

        .service-card i {
            font-size: 50px;
            color: #ffcc00;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 22px;
            color: #003366;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Stats Bank */
        .bank-stats {
            background: #003366;
            padding: 60px 50px;
            color: white;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-box h3 {
            font-size: 48px;
            color: #ffcc00;
            margin-bottom: 10px;
        }

        .stat-box p {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Footer Bank */
        .bank-footer {
            background: #001a33;
            color: white;
            padding: 40px 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-col h4 {
            color: #ffcc00;
            margin-bottom: 20px;
        }

        .footer-col p {
            opacity: 0.7;
            line-height: 1.6;
        }

        .footer-col i {
            margin-right: 10px;
            color: #ffcc00;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.6;
            font-size: 14px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 450px;
            position: relative;
            animation: modalSlideIn 0.4s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            cursor: pointer;
            color: #999;
            transition: all 0.3s;
        }

        .close-modal:hover {
            color: #003366;
        }

        .modal h2 {
            text-align: center;
            color: #003366;
            margin-bottom: 10px;
            font-size: 28px;
        }

        .modal p {
            text-align: center;
            color: #666;
            margin-bottom: 30px;
        }

        .input-group {
            margin-bottom: 20px;
        }

        .input-group input, .input-group select {
            width: 100%;
            padding: 14px 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 15px;
            transition: all 0.3s;
        }

        .input-group input:focus, .input-group select:focus {
            outline: none;
            border-color: #ffcc00;
            box-shadow: 0 0 0 3px rgba(255,204,0,0.1);
        }

        .btn-modal {
            width: 100%;
            padding: 14px;
            background: #003366;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-modal:hover {
            background: #002244;
            transform: translateY(-2px);
        }

        .switch-form {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }

        .switch-form a {
            color: #003366;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .switch-form a:hover {
            text-decoration: underline;
        }

        /* Forgot link */
        .forgot-link {
            text-align: right;
            margin: 10px 0;
        }

        .forgot-link a {
            color: #003366;
            text-decoration: none;
            font-size: 13px;
        }

        .forgot-link a:hover {
            text-decoration: underline;
        }

        /* Form group */
        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 600;
            color: #333;
        }

        .modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .btn-primary, .btn-secondary {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
        }

        .btn-primary {
            background: #003366;
            color: white;
            flex: 1;
        }

        .btn-secondary {
            background: #6c757d;
            color: white;
            flex: 1;
        }

        /* Notification */
        .notification-top {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            min-width: 300px;
            max-width: 450px;
        }

        .notification {
            background: white;
            border-radius: 12px;
            padding: 15px 20px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            animation: slideIn 0.3s ease;
            border-left: 4px solid;
        }

        .notification.success {
            border-left-color: #10b981;
        }

        .notification.error {
            border-left-color: #ef4444;
        }

        .notification.info {
            border-left-color: #3b82f6;
        }

        .notification i {
            font-size: 20px;
        }

        .notification.success i {
            color: #10b981;
        }

        .notification.error i {
            color: #ef4444;
        }

        .notification.info i {
            color: #3b82f6;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .notification div:last-child {
            cursor: pointer;
            color: #999;
            transition: color 0.3s;
        }

        .notification div:last-child:hover {
            color: #333;
        }

        @media (max-width: 768px) {
            .bank-header {
                padding: 15px 20px;
                flex-direction: column;
            }
            .bank-hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .bank-hero-text h1 {
                font-size: 32px;
            }
            .bank-features-list {
                justify-content: center;
            }
            .bank-services, .bank-stats, .bank-footer {
                padding: 40px 20px;
            }
            .stat-box h3 {
                font-size: 32px;
            }
            .modal-content {
                padding: 30px 20px;
            }
            .notification-top {
                top: 10px;
                right: 10px;
                left: 10px;
                width: auto;
            }
        }

        .contact-info a:hover {
            color: #ffcc00 !important;
            text-decoration: underline !important;
        }