        body {
            font-family: 'Arial', sans-serif;
            background-color: #b3e5fc;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        header {
            background-color: #0277bd;
            color: white;
            padding: 1rem 0;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
            margin: 0;
            padding: 10px;
        }

        section {
            padding: 20px;
            max-width: 800px;
            margin: 20px auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        section h2 {
            color: #01579b;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        section ul {
            list-style-type: none;
            padding: 0;
        }

        section ul li {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }

        section ul li:last-child {
            border-bottom: none;
        }

        section ul li::before {
            content: "✅ ";
            color: #01579b;
            font-weight: bold;
        }

        .price {
            background-color: #b3e5fc;
            padding: 10px;
            border-left: 4px solid #01579b;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .cta {
            text-align: center;
            margin-top: 20px;
        }
        
        .cta a {
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2rem;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 10px; /* Space between the buttons */
        }
        
        /* Facebook Button */
        .fb-btn {
            background-color: #01579b;
        }
        
        .fb-btn:hover {
            background-color: #003c8f;
        }
        
        /* Instagram Button */
        .ig-btn {
            background-color: #C13584; /* Instagram color */
        }
        
        .ig-btn:hover {
            background-color: #E1306C; /* Darker Instagram hover color */
        }
        
        .cta i {
            margin-right: 8px;
            font-size: 1.5rem;
        }

        footer {
            background-color: #0277bd;
            color: white;
            text-align: center;
            padding: 5px;
            position: fixed;
            width: 100%;
            bottom: 0;
            font-size: 0.9rem;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            grid-gap: 15px;
            padding: 20px;
            margin-top: 20px;
        }

        .gallery h2 {
            width: 100%;
            grid-column: 1 / -1;
            margin-bottom: 10px;
        }

        .gallery a {
            display: block;
            overflow: hidden;
            position: relative;
            border-radius: 8px;
        }

        .gallery img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .gallery a:hover img {
            transform: scale(1.05);
        }

        /* Mobile view with 2 images side by side */
        @media screen and (max-width: 768px) {
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            .gallery img {
                height: 120px;
            }
        }

        @media screen and (max-width: 480px) {
            .gallery img {
                height: 100px;
            }
        }
/* Desktop Menü */
.desktop-menu {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.desktop-menu li {
    position: relative;
}

.desktop-menu li a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: normal; /* Nem félkövér betű */
    border-radius: 5px;
    background-color: #0277bd;
}

.desktop-menu li a:hover {
    background-color: #004d73;
    color: #fff;
    border-radius: 5px;
}

/* Dropdown menü (számítógépes nézethez) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #004d73; /* Sötétebb háttérszín a dropdown menüben */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    min-width: 220px;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: #ffffff; /* Világos betűszín a sötét háttéren */
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    font-size: 1rem;
}

.dropdown-content a:hover {
    background-color: #01579b; /* Kék hover állapot a menüpontoknál */
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Hamburger ikon (csak mobilon, bal oldalt) */
.menu-icon {
    display: none;
    font-size: 1.5rem;
    color: #01579b;
    cursor: pointer;
    padding: 1px;
    height: 20px;
}

/* Oldalról előugró menü (mobil nézethez, bal oldalt) */
.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;  /* Bal oldalról jelenik meg */
    background-color: #01579b;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align: center;
}

.side-menu a {
    padding: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    color: white;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    background-color: #004d73;
}

.side-menu .closebtn {
    position: absolute;
    top: 10px;
    left: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

/* Mobilon megjelenő dropdown menü */
#dropdownMenuMobile {
    display: none;
}

.side-menu a.active + #dropdownMenuMobile {
    display: block;
}

#dropdownMenuMobile a {
    font-size: 1.3rem;
    padding: 8px 16px;
    background-color: #004d73;
    color: white;
    border-bottom: 1px solid #003353;
}

#dropdownMenuMobile a:hover {
    background-color: #003353;
}

/* Reszponzív stílus */
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .desktop-menu {
        display: none;
    }
}