.swift-header {
            text-align: center;
            color: white;
            margin-bottom: 3rem;
        }

        .swift-logo {
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .swift-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            line-height: 1.1;
        }

        .swift-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        /* COMPACT CALCULATOR STYLES */
        .compact-loan-calculator {
            width: 100%;
            max-width: 1000px;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            border-radius: 20px;
            overflow: hidden;
            background-clip: padding-box;
        }

        .compact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 280px; /* Reduced from 400px */
        }

        /* Left Panel - Controls (Compact) */
        .compact-controls {
            padding: 1.5rem; /* Reduced from 2rem */
            border-right: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
        }

        .compact-group {
            margin-bottom: 1.2rem; /* Reduced from 2.5rem */
        }

        .compact-group:last-child {
            margin-bottom: 0;
        }

        .compact-label {
            display: flex;
            align-items: center;
            font-size: 0.9rem; /* Slightly smaller */
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 0.5rem; /* Reduced */
            text-transform: uppercase;
            letter-spacing: 0.5px;
            justify-content: center;
        }

        .compact-icon {
            width: 18px; /* Smaller */
            height: 18px;
            border-radius: 50%;
            background: #79BAEC;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.5rem;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .compact-amount {
            font-size: 2.75rem; /* Reduced from 3rem */
            font-weight: 500;
            color: #000000;
            margin: 0.5rem 0; /* Reduced */
            text-align: center;
        }

        .compact-term {
            font-size: 2.75rem; /* Reduced from 3rem */
            font-weight: 500;
            color: #000000;
            margin: 0.5rem 0; /* Reduced */
            text-align: center;
        }

        /* Compact Sliders */
        .compact-slider {
            width: 100%;
            height: 14px; 
            border-radius: 10px;
            background: linear-gradient(0deg, #79baec, #125b93);
            outline: none;
            -webkit-appearance: none;
            appearance: none;
            cursor: pointer;
            margin: 0.5rem 0; /* Reduced spacing */
        }

        .compact-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 30px; 
            height: 30px;
            border-radius: 50%;
            background: #79BAEC;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
            transition: all 0.2s ease;
            border: 2px solid white;
        }

        .compact-slider::-webkit-slider-thumb:hover {
            transform: scale(1.15);
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.6);
        }

        .compact-slider::-moz-range-thumb {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #79BAEC;
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(6, 182, 212, 0.4);
        }

        .compact-range {
            display: flex;
            justify-content: space-between;
            margin-top: 0.3rem;
            font-size: 0.8rem; /* Smaller */
            color: #64748b;
            font-weight: 500;
        }

        /* Right Panel - Results (Compact) */
        .compact-results {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            padding: 1.5rem; /* Reduced from 2rem */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .liner {
            position: relative;
            height: 1px;
            background-color: #4e6e81;
            border: 0;
            margin: 0.15rem 0;
        }

        .compact-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem; /* Reduced */
            font-size: 1rem; /* Reduced */
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .compact-header-icon {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: white;
            color: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.5rem;
            font-size: 0.7rem;
            font-weight: bold;
        }

        .compact-details-inside {
            padding: 0.5rem 1rem;
            background: #224257;
            border-radius: 8px;
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .compact-result {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.4rem 0; /* Reduced */
            font-size: 0.9rem; /* Slightly smaller */
        }

        .compact-result:last-child {
            border-bottom: none;
        }

        .compact-result-label {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
        }

        .compact-result-value {
            font-weight: 700;
            color: white;
            text-align: right;
        }

        /* Compact Total - More Prominent but Smaller */
        .compact-total {
            margin: 0.5rem 0; /* Reduced */
            padding: 1rem; /* Reduced */
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 12px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .compact-total::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s ease;
        }

        .compact-total:hover::before {
            left: 100%;
        }

        .compact-total-label {
            font-size: 0.8rem; /* Smaller */
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .compact-total-value {
            font-size: 2.75rem; /* Reduced from 2.5rem */
            font-weight: 500;
            color: #ffffff;
            position: relative;
            z-index: 1;
        }

        .compact-apr {
            font-size: 1.1rem; /* Reduced */
            font-weight: 700;
            color: #fbbf24;
        }

        /* Apply Now Button */
        .compact-apply-section {
            text-align: center;
        }

        .compact-apply-btn {
            display: inline-flex;
            align-items: center;
            gap: 20px;
            background-color: #4caf50; 
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 24px;
            padding: 12px 35px;
            border-radius: 8px; 
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 12px rgba(72, 168, 96, 0.3);
        }

        .compact-apply-btn:hover {
            background-color: #45a049; /* SĂśtĂŠtebb zĂśld hoverre */
        }

         .compact-apply-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
        }

        /* A fekete kĂśr az ikon kĂśrĂźl */
        .icon-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: black;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        }

        /* Az SVG ikon mĂŠretezĂŠse */
        .icon-circle svg {
        width: 20px;
        height: 20px;
        }

        

       

        /* Swift Reviews Section */
        .swift-reviews {
            text-align: center;
            color: white;
            margin-top: 2rem;
            opacity: 0.9;
        }

        .reviews-text {
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .reviews-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stars {
            color: #fbbf24;
            margin-right: 0.5rem;
            font-size: 1.1rem;
        }

        /* Responsive - Mobile */
        @media (max-width: 768px) {
            .compact-content {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            
            .compact-controls, .compact-results {
                padding: 1rem;
            }
            
            .compact-results {
                border-right: none;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            .compact-amount {
                font-size: 3rem;
            }
            
            .compact-total-value {
                font-size: 3rem;
            }
            
            .swift-title {
                font-size: 2rem;
            }
            
            .compact-loan-calculator {
                max-width: 100%;
                margin: 0 1rem;
            }

            /* Mobile Apply Button */
            .compact-apply-btn {
                padding: 1rem 2.5rem;
                font-size: 1.1rem;
                min-width: 160px;
            }

            .compact-apply-section {
                margin-top: -1.75rem;
                padding-top: 1.25rem;
            }
        }

        

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .compact-calculating {
            opacity: 0.6;
            transition: opacity 0.2s ease;
        }