        /* SPREMENLJIVKE IN OSNOVNI RESET ZA BS3 */
        :root {
            --primary: #4a3b52;
            --primary-hover: #3a2e40;
            --accent: #e5d4c7;
            --accent-hover: #d4bfb0;
            --accent-dark: #b39982;
            --danger: #dc2626;
            --text-dark: #1f2937;
            --text-muted: #4b5563;
            --bg-light: #f9fafb;
            
            --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
            --shadow-heavy: 0 20px 40px rgba(0,0,0,0.12);
            --shadow-glow: 0 10px 25px rgba(229, 212, 199, 0.4);
            --shadow-glow-hover: 0 15px 35px rgba(229, 212, 199, 0.6);
        }

        body {
            font-family: 'Lora', serif; /* OSNOVNI FONT ZA BESEDILO */
            color: var(--text-dark);
            background-color: var(--bg-light);
            padding-bottom: 50px; /* Prostor za sticky banner */
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* NASLOVI - NIRAMIT FONT */
        h1, h2, h3, h4, h5, h6, .btn-primary-custom, .niramit-font {
            font-family: 'Niramit', sans-serif !important;
            font-weight: 700;
            color: var(--primary);
            margin-top: 0;
            letter-spacing: -0.01em;
        }

        /* SPACING UTILITIES (Ker jih BS3 nima) */
        .py-100 { padding-top: 100px; padding-bottom: 100px; }
        .py-80 { padding-top: 80px; padding-bottom: 80px; }
        .mb-15 { margin-bottom: 15px; }
        .mb-25 { margin-bottom: 25px; }
        .mb-40 { margin-bottom: 40px; }
        .mb-60 { margin-bottom: 60px; }
        .text-center { text-align: center; }
        
        /* BARVNI UTILITIJI ZA SEKCIJE */
        .bg-white { background-color: #ffffff; }
        .bg-light { background-color: var(--bg-light); }
        
        /* Flexbox override za BS3 mreže - POPRAVLJENO ZA ENAKE VIŠINE IN RAZMIKE */
        .flex-row {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-row > [class*='col-'] {
            display: flex;
            flex-direction: column;
        }

        /* 1. HERO SEKCIJA */
        .hero-section {
            position: relative;
            background-color: var(--primary);
            color: #fff;
            padding: 160px 20px 120px 20px;
            text-align: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: url('https://www.klinika-omnia.si/wp-content/uploads/2016/10/slika.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.4;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(to top, rgba(74, 59, 82, 0.9), rgba(74, 59, 82, 0.4));
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero-content h1 {
            color: #fff;
            font-size: 56px !important;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .hero-content h3 {
            color: #e2e8f0;
            font-size: 28px !important;
            font-weight: 500;
            margin-bottom: 32px;
        }

        .hero-content p {
            font-size: 20px;
            color: #cbd5e1;
            max-width: 800px;
            margin: 0 auto 40px auto;
            line-height: 1.7;
        }

        .btn-primary-custom {
            display: inline-block;
            background-color: var(--accent);
            color: var(--primary) !important;
            padding: 18px 45px;
            font-size: 18px !important;
            border-radius: 50px;
            text-decoration: none !important;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-glow);
            border: none;
        }

        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-glow-hover);
        }

        /* 2. GLAVNE STORITVE (2x2 HORIZONTALNE KARTICE) */
        .section-title {
            font-size: 40px !important;
            margin-bottom: 60px;
        }

        /* Container za močan zračni razmik (gap) med karticami v BS3 */
        .service-wrapper {
            margin-bottom: 50px; /* Vertikalni razmik med vrsticami */
            padding: 0 20px; /* Horizontalni razmik med stolpci */
        }

        .service-card {
            display: flex;
            flex-direction: row;
            background: #fff;
            border-radius: 24px;
            box-shadow: var(--shadow-soft);
            border-top: 4px solid var(--primary);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            flex-grow: 1;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }

        .service-img-container {
            width: 40%;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .service-img-container img {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img-container img {
            transform: scale(1.05);
        }

        .service-content {
            width: 60%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: start;
        }

        .service-content h3 {
            font-size: 28px !important;
            margin-bottom: 15px;
        }

        .service-content p {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .service-content h5 {
            font-size: 18px !important;
            margin-bottom: 15px;
        }

        ul.check-list {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        ul.check-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 12px;
            font-size: 17px;
            color: var(--text-dark);
            font-weight: 500;
        }

        ul.check-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--primary);
            font-size: 18px;
        }

        .faculty-banner {
            background-color: var(--primary);
            border-radius: 24px;
            padding: 50px;
            color: #fff;
            box-shadow: var(--shadow-heavy);
            display: flex;
            align-items: center;
            margin: 20px 20px 0 20px;
        }

        .faculty-icon {
            width: 100px; height: 100px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 45px;
            color: var(--accent);
            flex-shrink: 0;
            margin-right: 30px;
        }

        .faculty-text {
            flex-grow: 1;
            padding-right: 30px;
        }

        .faculty-text h3 {
            color: #fff;
            font-size: 30px !important;
            margin-bottom: 15px;
        }

        .faculty-text p {
            font-size: 19px;
            color: #e2e8f0;
            margin: 0;
            line-height: 1.6;
        }

        .faculty-btn {
            background: #fff;
            color: var(--primary) !important;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none !important;
            transition: all 0.3s ease;
            font-family: 'Niramit', sans-serif;
            font-size: 17px;
            white-space: nowrap;
        }

        .faculty-btn:hover {
            background: var(--bg-light);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* 3. ZAKAJ IZBRATI NAS */
        .feature-card {
            background: #f9fafb;
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            height: 100%;
            flex-grow: 1;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-soft);
        }

        .feature-icon-wrap {
            width: 80px; height: 80px;
            margin: 0 auto 25px auto;
            background: rgba(74, 59, 82, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .feature-card:hover .feature-icon-wrap {
            transform: scale(1.1);
        }

        .feature-icon-wrap i {
            font-size: 36px;
            color: var(--accent-dark);
        }

        .feature-card h4 {
            font-size: 22px !important;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        /* 4. FAQ SEKCIJA (Custom jQuery) */
        .faq-section {
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .faq-item {
            background: #fff;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }

        .faq-question {
            padding: 24px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-question h4 {
            margin: 0;
            font-size: 20px !important;
            color: var(--primary);
            padding-right: 20px;
        }

        .faq-icon {
            font-size: 20px;
            color: var(--accent-dark);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            display: none;
            padding: 0 30px 24px 30px;
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.7;
            border-top: 1px solid #f1f5f9;
            margin-top: 15px;
            padding-top: 15px;
        }

        /* 5. OSEBJE */
        .doctor-profile {
            text-align: center;
        }

        .doctor-img-wrap {
            width: 180px; height: 180px;
            margin: 0 auto 25px auto;
            border-radius: 50%;
            padding: 5px;
            border: 4px solid var(--accent);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .doctor-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .doctor-profile h4 {
            font-size: 26px !important;
            margin-bottom: 8px;
        }

        .doctor-profile p {
            font-size: 18px;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* 6. CTA NAROČANJE */
        .cta-container {
            background: var(--primary);
            border-radius: 32px;
            padding: 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }

        .cta-container h2 {
            color: #fff;
            font-size: 46px !important;
            position: relative;
            z-index: 10;
        }

        .cta-container p {
            color: #cbd5e1;
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 50px auto;
            position: relative;
            z-index: 10;
        }
		.cta-container .contact-box p {
			margin-bottom: 0px;
        }

        .contact-blocks {
            display: flex;
            justify-content: center;
            gap: 40px;
            position: relative;
            z-index: 10;
        }

        .contact-box {
            background: rgba(255,255,255,0.1);
            padding: 30px 40px;
            border-radius: 20px;
            min-width: 300px;
            transition: background 0.3s;
        }

        .contact-box:hover {
            background: rgba(255,255,255,0.15);
        }

        .contact-box i {
            font-size: 32px;
            color: var(--accent-dark);
            margin-bottom: 20px;
        }

        .contact-box h4 {
            color: #e2e8f0;
            font-size: 18px !important;
            margin-bottom: 5px;
        }

        .contact-box a {
            color: #fff;
            font-size: 26px;
            font-weight: 700;
            text-decoration: none !important;
            font-family: 'Niramit', sans-serif;
            transition: color 0.3s;
        }

        .contact-box a:hover {
            color: var(--accent);
        }

        /* Fiksno opozorilo */
        .sticky-warning {
            position: fixed;
            bottom: 0; left: 0; width: 100%;
            background-color: var(--danger);
            color: #fff;
            text-align: center;
            padding: 10px 15px;
            font-size: 14px;
            font-weight: 600;
            z-index: 9999;
            box-shadow: 0 -2px 10px rgba(220,38,38,0.2);
            font-family: 'Niramit', sans-serif;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sticky-warning i {
            margin-right: 10px;
        }
		.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}
		.leading-snug {
    line-height: 1.375;
}
.font-medium {
    font-weight: 500;
}

        /* RESPONSIVE DESIGN (Nativno obnašanje Tailwinda preneseno v custom CSS) */
        @media (max-width: 991px) {
            .service-card {
                flex-direction: column;
            }
            .service-img-container {
                width: 100%;
                height: 250px;
            }
            .service-content {
                width: 100%;
                padding: 30px;
            }
            .faculty-banner {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
            }
            .faculty-icon {
                margin: 0 auto 25px auto;
            }
            .faculty-text {
                padding-right: 0;
                margin-bottom: 30px;
            }
            .contact-blocks {
                flex-direction: column;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 38px !important; }
            .hero-content h3 { font-size: 22px !important; }
            .hero-section { padding: 120px 20px 80px 20px; }
            .section-title { font-size: 32px !important; margin-bottom: 40px; }
            .cta-container { padding: 40px 20px; }
            .cta-container h2 { font-size: 34px !important; }
            .contact-box { min-width: 100%; }
            .sticky-warning { font-size: 12px; }
        }