* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2d6b6a 0%, #1a4b4a 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ff9500;
        }

				/* Desktop (tvoje postojeće) */
		.nav-links {
			display: flex;
			list-style: none;
			gap: 2rem;
		}

		.nav-links a {
			color: white;
			text-decoration: none;
			transition: color 0.3s;
		}

		.nav-links a:hover {
			color: #ff9500;
		}

		/* Mobilni */
		@media (max-width: 768px) {
			.nav-links {
				display: none; /* sakriveno po defaultu */
				position: absolute;
				top: 60px;
				right: 20px;
				flex-direction: column;
				background: #222;
				padding: 1rem;
				border-radius: 10px;
				gap: 1rem;
			}

			.nav-links.active {
				display: flex; /* prikaži kada se klikne na dugme */
			}

			.mobile-menu {
				display: block;
				background: none;
				border: none;
				font-size: 28px;
				color: white;
				cursor: pointer;
			}
		}

		/* Desktop - sakrij hamburger */
		@media (min-width: 769px) {
			.mobile-menu {
				display: none;
			}
		}


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2d6b6a 0%, #1a4b4a 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.6;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(45deg, #fff, #ff9500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff9500, #ff7700);
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.4s both;
            box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 149, 0, 0.4);
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: #f8fafa;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2d6b6a;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(45, 107, 106, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(45, 107, 106, 0.15);
            border-color: #ff9500;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, #2d6b6a, #ff9500);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #2d6b6a;
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 0;
            background: linear-gradient(135deg, #2d6b6a 0%, #1a4b4a 100%);
            color: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .benefit-item:hover {
            transform: scale(1.05);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: #ff9500;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Video Tutorials Section */
        .tutorials {
            padding: 80px 0;
            background: #f8fafa;
        }

        .tutorials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .tutorial-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(45, 107, 106, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }

        .tutorial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(45, 107, 106, 0.15);
            border-color: #ff9500;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .tutorial-content {
            padding: 1.5rem;
        }

        .tutorial-content h3 {
            font-size: 1.3rem;
            color: #2d6b6a;
            margin-bottom: 0.8rem;
            font-weight: 600;
        }

        .tutorial-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .tutorial-meta {
            display: flex;
            gap: 1rem;
            font-size: 0.85rem;
        }

        .tutorial-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            color: #888;
            background: #f0f8f8;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-weight: 500;
        }

        .duration {
            color: #2d6b6a !important;
        }

        .difficulty {
            color: #ff9500 !important;
        }

        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: #f8fafa;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(45, 107, 106, 0.1);
            transition: transform 0.3s ease;
            position: relative;
            border: 2px solid transparent;
			color: #ff9500;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: #ff9500;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, #2d6b6a 0%, #1a4b4a 100%);
            color: white;
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: 'NAJPOPULARNIJI';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff9500;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .plan-price {
            font-size: 5rem;
            font-weight: bold;
            color: #ff9500;
            margin-bottom: 0.5rem;
        }

        .plan-period {
            margin-bottom: 2rem;
            opacity: 0.8;
			font-size: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(45, 107, 106, 0.1);
        }

        .pricing-card.featured .plan-features li {
            border-color: rgba(255, 255, 255, 0.2);
        }

        .plan-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff9500, #ff7700);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: all 0.3s ease;
        }

        .plan-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 149, 0, 0.3);
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #ff9500 0%, #ff7700 100%);
            color: white;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-secondary {
            display: inline-block;
            background: white;
            color: #ff9500;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            margin: 0 10px;
        }

        .cta-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        footer {
            background: #1a4b4a;
            color: white;
            padding: 3rem 0 1rem;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #ff9500;
            margin-bottom: 1rem;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 0.2rem 0;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ff9500;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1rem;
            text-align: center;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background: #ff9500;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 100px 0 60px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .tutorials, .benefits, .pricing, .cta-section {
                padding: 60px 0;
            }

            .tutorials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .tutorial-card {
                margin: 0 10px;
            }

            .video-wrapper {
                height: 180px;
            }
			
        }
        .blog { padding: 80px 0; background: #f8fafa; }
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
        .blog-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
        .blog-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .blog-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #2d6b6a; }
        .blog-card p { color: #555; margin-bottom: 1.2rem; font-size: 0.95rem; }
        .blog-card a { color: #ff9500; font-weight: bold; text-decoration: none; }
        .blog-card a:hover { text-decoration: underline; }