
        /* Reset und Basis-Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Georgia, 'Times New Roman', serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 2rem 0;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tagline {
            font-size: 1.1rem;
            opacity: 0.9;
            font-style: italic;
        }

        /* Navigation */
        nav {
            background: rgba(52, 73, 94, 0.9);
            padding: 1rem 0;
            text-align: center;
            border-bottom: 3px solid #f39c12;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin: 0 1.5rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        nav a:hover {
            background: #f39c12;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
        }

        /* Container */
        .container {
            max-width: 900px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        /* Artikel Header */
        .article-header {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 5px solid #f39c12;
        }

        .article-meta {
            color: #7f8c8d;
            font-size: 1rem;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .article-title {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .article-subtitle {
            font-size: 1.3rem;
            color: #7f8c8d;
            font-style: italic;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Hero Image */
        .hero-image {
            margin: 2rem 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        /* Artikel Content */
        .article-content {
            background: white;
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .article-content h2 {
            color: #2c3e50;
            font-size: 1.8rem;
            margin: 2rem 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #f39c12;
            display: inline-block;
        }

        .article-content h3 {
            color: #34495e;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem 0;
        }

        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }

        .article-content ul {
            margin: 1rem 0 1.5rem 2rem;
        }

        .article-content li {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, #f39c12, #e67e22);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
        }

        .highlight-box h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        /* Quote */
        .quote {
            background: #ecf0f1;
            border-left: 5px solid #f39c12;
            padding: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            border-radius: 0 10px 10px 0;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
                margin: 1rem auto;
            }

            .article-header,
            .article-content {
                padding: 2rem;
            }

            .article-title {
                font-size: 2rem;
            }

            nav a {
                margin: 0 0.5rem;
                font-size: 0.9rem;
            }
		}