    body{
        background: linear-gradient(to right, #0f172a 55%, #88211e 100%);
    }
    .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('return_license_hero.jpg') no-repeat center center/cover; /* Obrázek pro hero sekci */
            color: white;
            padding: 100px 20px;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .hero-section p {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto;
        }

        .content-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
            color: white;
        }

        .content-section h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            text-align: center;
            color: #facc15;
        }

        .content-section h3 {
            font-size: 1.8em;
            margin-top: 40px;
            margin-bottom: 15px;
            color: #ff0000; /* Červená pro podnadpisy */
        }

        .content-section p {
            font-size: 1.1em;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .content-section ul {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .content-section ul li {
            background-color: #1e293b;
            margin-bottom: 10px;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            text-align: left;
            font-size: 1.05em;
        }

        .content-section ul li::before {
            content: '•'; /* Malá tečka jako odrážka */
            color: #facc15; /* Zlatá barva odrážky */
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            position: absolute;
            left: 10px;
            top: 15px;
        }

        .content-section ul li span {
            padding-left: 20px; /* Odsazení textu za odrážkou */
        }

        .important-note {
            background-color: #ff0000;
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            text-align: center;
            font-weight: bold;
            font-size: 1.15em;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .action-buttons a {
            display: inline-block;
            padding: 15px 30px;
            background-color: #ff0000;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .action-buttons a:hover {
            background-color: #cc0000;
            transform: translateY(-3px);
        }

        /* Sekce pro přezkoušení / kondiční jízdy (stejné jako u autoškoly, ale s upraveným textem) */
        .retest-section {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            color: white;
            background-color: #0f172a; /* Použijeme stejné pozadí jako body */
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2); /* Jemný stín nahoře */
            margin-top: 40px; /* Oddělení od předchozí sekce */
        }

        .retest-section h2 {
            font-size: 2.5em;
            margin-bottom: 30px;
            color: #facc15;
        }

        .retest-section p {
            font-size: 1.1em;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .retest-section form { /* Styly formuláře z předchozích stránek */
            background-color: #1e293b;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            margin: 0 auto;
            text-align: left;
        }

        .retest-section label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #facc15;
        }

        .retest-section input[type="text"],
        .retest-section input[type="email"],
        .retest-section input[type="tel"],
        .retest-section textarea {
            width: calc(100% - 22px);
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #555;
            border-radius: 5px;
            background-color: #0f172a;
            color: white;
            font-size: 1em;
        }

        .retest-section button {
            background-color: #ff0000;
            color: white;
            padding: 15px 25px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }

        .retest-section button:hover {
            background-color: #cc0000;
        }

        .retest-section .message {
            margin-top: 20px;
            padding: 15px;
            border-radius: 5px;
            font-weight: bold;
        }

        .retest-section .message.success {
            background-color: #d4edda;
            color: #155724;
            border-color: #c3e6cb;
        }

        .retest-section .message.error {
            background-color: #f8d7da;
            color: #721c24;
            border-color: #f5c6cb;
        }

        /* Telefonní číslo v sekci přezkoušení */
        .retest-section p a[href^="tel:"] {
            color: #00b4d8;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }

        .retest-section p a[href^="tel:"]:hover {
            color: #008c9e;
        }


        /* Responsivní úpravy */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2em;
            }
            .hero-section p {
                font-size: 1em;
            }
            .content-section h2, .retest-section h2 {
                font-size: 2em;
            }
            .content-section h3 {
                font-size: 1.6em;
            }
            .content-section p, .retest-section p {
                font-size: 1em;
            }
            .content-section ul li {
                padding: 12px 15px;
                font-size: 0.95em;
            }
            .content-section ul li span {
                padding-left: 15px;
            }
            .important-note {
                font-size: 1em;
                padding: 15px;
            }
            .action-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .action-buttons a {
                width: 90%;
                padding: 12px 20px;
                font-size: 1em;
            }
            .retest-section form {
                padding: 25px;
            }
            .retest-section input[type="text"],
            .retest-section input[type="email"],
            .retest-section input[type="tel"],
            .retest-section textarea {
                width: calc(100% - 20px);
                padding: 10px;
            }
            .retest-section button {
                padding: 12px 20px;
                font-size: 1em;
            }
        }

        @media (max-width: 480px) {
            .hero-section h1 {
                font-size: 1.8em;
            }
            .hero-section p {
                font-size: 0.9em;
            }
            .content-section h2, .retest-section h2 {
                font-size: 1.8em;
            }
            .content-section h3 {
                font-size: 1.4em;
            }
            .action-buttons a {
                width: 100%;
            }
        }