    /* Všeobecné štýly pre kontajner a rozloženie */
    .container {
        position: relative;
        width: 100%;
        max-width: 90%;
        margin: 5px auto;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Sekcia pre fotku */
    .photo-section {
        position: relative;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
        overflow: hidden;
        border: 2px solid #818181;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* Obrázok vo fotkovej sekcii */
    .monika-image {
        width: 100%;
        height: 100%; /* Zmeň auto na 100%, aby vypĺňal celý kontajner */
        object-fit: cover; /* Zabezpečí, že obrázok sa prispôsobí kontajneru */
        margin: 0 auto;
        display: block;
    }

    /* Text vo fotkovej sekcii */
    .text-overlay {
        position: absolute;
        top: 20%;
        left: 22%;
        transform: translate(-40%, -30%);
        color: rgb(0, 0, 0);
        font-size: 9px;
        line-height: 1.2;
        text-align: left;
        font-family: 'Playfair Display', serif;
    }

    /* Sekcia tlačidiel */
    .buttons {
        display: flex;
        flex-wrap: wrap; /* Zabezpečí zalomenie tlačidiel na ďalší riadok, ak je potrebné */
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    /* Tlačidlá */
    .button {
        width: 100%;
        max-width: 150px;
        text-align: center;
        padding: 10px 15px;
        color: black;
        text-decoration: none;
        border-radius: 5px;
        font-size: 14px;
        font-family: 'Playfair Display', serif;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border: 2px solid #818181;
        box-sizing: border-box; /* Zabezpečí, že veľkosť tlačidla bude brať do úvahy aj padding */
    }

/* Upravené farby tlačidiel podľa sekcií - zoradené od najtmavšej po najsvetlejšiu */
#btn_poistenie_majteku {
    background-color: #98b25e; /* Jemne zosvetlená zelená */
}

#btn_cestovne_poistenie {
    background-color: #e8d17a; /* Tmavšia zelená */
}

#btn_havarijne_poistenie {
    background-color: #d1d6b8; /* Svetlejšia zelená */
}

#btn_pzp_strazca {
    background-color: #b9d8ac; /* Svetlá žltá */
}

#btn_pzp {
    background-color: #c4e0b0; /* Svetlejšie ako PZP Strážca */
}

#btn_zivotne_urazove_poistenie {
    background-color: #6d8f43; /* Svetlá zelená */
}

    /* Jemné zväčšenie pri hover aj pri výbere */
    @media (min-width: 769px) {
        .button:hover, .button.selected {
            transform: scale(1.05); /* Jemné priblíženie */
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Jemný tieň */
        }
    }

    /* Efekt pri kliknutí (rovnaký ako hover) */
    .button:active, .button.selected {
        transform: scale(1.05); /* Jemné priblíženie */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Jemný tieň */
        background-color: inherit;
        border: 2px solid #818181;
        font-weight: normal;
    }

    /* Sekcia s iframe */
    .content-section {
        position: relative;
        top: 20px;
        margin: 0 auto;
        width: 100%;
        max-width: 800px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s ease-out, opacity 0.6s ease-out, visibility 0.6s ease-out;
        text-align: center;
        padding-bottom: 10px;
    }

    /* Viditeľný obsah */
    .content-section.visible {
        max-height: 1200px;
        opacity: 1;
        visibility: visible;
        padding-bottom: 30px; /* Zvýšený priestor pod iframe */
    }

    /* Iframe bude centrovaný */
    .iframes {
        width: 100%;
        max-width: 800px;
        border: none;
        min-height: 716px; /* Minimálna výška iframe */
    }

    /* Upravené štýly pre zariadenia medzi 769px a 1024px */
    @media (min-width: 769px) and (max-width: 1024px) {
        .container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: stretch;
            width: 100%;
            max-width: 680px;
            margin: 0 auto;
        }

        .photo-section {
            flex: 0 0 60%;
            margin-bottom: 0;
            margin-right: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .text-overlay {
            font-size: 11px;
            top: 20%;
            left: 15%;
            text-align: left;
            font-family: 'Playfair Display', serif;
        }

        .buttons {
            flex: 0 0 40%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .button {
            width: 100%;
            max-width: 180px;
            padding: 15px 30px; /* Väčšie a širšie tlačidlá */
            text-align: left;
            color: black;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'Playfair Display', serif;
            transition: background-color 0.3s ease;
        }
    }

    /* Upravené štýly pre väčšie zariadenia (nad 1024px) */
    @media (min-width: 1025px) {
        .container {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: stretch;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .photo-section {
            flex: 0 0 65%;
            margin-bottom: 0;
            margin-right: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .monika-image {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .text-overlay {
            font-size: 17px;
            top: 20%;
            left: 20%;
            text-align: left;
            font-family: 'Playfair Display', serif;
        }

        .buttons {
            flex: 0 0 35%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .button {
            width: 100%;
            max-width: 380px;
            padding: 15px 40px;
            text-align: left;
            color: black;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            font-family: 'Playfair Display', serif;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
        }
    }

    /* Responzívne štýly pre menšie zariadenia */
    @media (max-width: 768px) {
        .monika-image {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .buttons {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            justify-items: center;
        }

        .button {
            width: 100%;
            max-width: 155px;
            padding: 8px 15px;
            color: black;
            font-family: 'Playfair Display', serif;
            border: 2px solid #818181;
        }

        /* Efekt po zvolení pre mobilné zariadenia */
        .button.selected {
            transform: scale(1.05);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
            background-color: inherit;
            border: 2px solid #818181;
            font-weight: normal;
        }
    }
