
        /* Grundlegende Styles */
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #7f8c8d;
            --accent-color: #c0392b;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background-color: var(--primary-color);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            color: var(--accent-color);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav li {
            margin-left: 1.5rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: var(--accent-color);
        }
        
        /* Hero Bereich */
        .hero {
            background: linear-gradient(rgba(44, 62, 80, 0.5), rgba(44, 62, 80, 0.4)),
			url('./bilder/Pershing I-SW.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 300;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            margin: 0.5rem;
        }
        
        .cta-button:hover {
            background-color: #a93226;
        }
        
        /* Buchvorstellung */
        .book-section {
            padding: 4rem 0;
            background-color: white;
        }
        
        .book-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: flex-start;
        }
        
        .book-cover {
            flex: 0 0 300px;
             /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* 
            border-radius: 4px;
             /* overflow: hidden;  /* 
        }
        
		.book-cover img {
			width: 100%;
			height: auto;
			display: block;
			max-height: 500px; /* Optional: maximale Höhe festlegen */
			object-fit: contain; /* Stellt sicher, dass das ganze Bild sichtbar ist */
	}
        
        .book-info {
            flex: 1;
            min-width: 300px;
        }
        
        .book-info h2 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 2rem;
        }
        
        .book-subtitle {
            color: var(--secondary-color);
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .book-description {
            margin-bottom: 2rem;
        }
        
        /* Kaufoptionen */
        .purchase-options {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .purchase-btn {
            display: inline-block;
            padding: 0.7rem 1.5rem;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .purchase-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        .purchase-btn.accent {
            background-color: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        .purchase-btn.accent:hover {
            background-color: #a93226;
        }
        
        /* Themenbereiche */
        .topics-section {
            padding: 4rem 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 3rem;
            font-size: 2rem;
        }
        
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        
        .topic-card {
            background-color: white;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .topic-img {
            height: 180px;
            background-color: #ddd;
            background-size: cover;
            background-position: center;
			border-bottom: 1px solid black; 
        }
        
        .topic-content {
            padding: 1.5rem;
        }
        
        .topic-content h3 {
			color: #007F46;
            margin-bottom: 0.8rem;
        }
		
		.topic-content p {
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }
        
        /* Autor */
        .author-section {
            padding: 4rem 0;
            background-color: white;
        }
        
        .author-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }
        
        .author-photo {
            flex: 0 0 250px;
        }
        
        .author-photo img {
            width: 100%;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            flex: 1;
            min-width: 300px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.7rem;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Responsive Anpassungen */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            nav li {
                margin: 0 0.7rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .book-container, .author-container {
                flex-direction: column;
                align-items: center;
            }
        }
		
		.lizenz {
		    font-size: 0.7rem;
			padding-left: 0.7rem;
			}