    body {
        font-family: Arial, sans-serif;
        background-color: #f4f4f9;
        color: #333;
        margin: 0;
        padding: 0;
        line-height: 1.6;
    }

    header {
        background-color: #ffcc00;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .bannerimg {
        width: 400px;
        height: auto;
        margin: auto;
    }

    .bannerimg img {
        width: 100%;
        height: 100%;
        border-radius: 180px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    p {
        font-size: 18px;
        margin-bottom: 15px;
    }

    main {
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    section {
        margin-bottom: 40px;
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    h2 {
        color: #2c3e50;
        font-size: 28px;
        margin-bottom: 15px;
    }

    ul {
        list-style-type: none;
        padding-left: 0;
    }

    ul li {
        background: wheat;
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    ul li img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        margin-right: 15px;
        border-radius: 50%;
        transition: transform 0.3s ease;
    }

    ul li:hover {
        background-color: #f1f1f1;
        transform: translateY(-2px);
    }

    ul li:hover img {
        transform: scale(1.1);
    }

    .cta {
        background-color: #ff6600;
        color: white;
        padding: 12px 24px;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        margin-top: 15px;
    }

    .cta:hover {
        background-color: #cc5500;
    }

    footer {
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 10px;
        position: relative;
        bottom: 0;
        width: 100%;
    }

    footer p {
        margin: 0;
    }

    .breadcrumb {
        list-style: none;
        padding: 10px;
        background: #f8f8f8;
        display: flex;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .breadcrumb li {
        margin-right: 10px;
    }

    .breadcrumb li a {
        text-decoration: none;
        color: #0073e6;
        font-weight: bold;
    }

    .breadcrumb li a:hover {
        text-decoration: underline;
    }

    .pairings {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        margin-bottom: 40px;
    }

    .pairings h2 {
        color: #2c3e50;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pairings ul {
        list-style-type: none;
        padding-left: 0;
    }

    .pairings ul li {
        background: #f8f8f8;
        padding: 15px;
        margin: 15px 0;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        gap: 2rem;
    }

    .pairings ul li strong {
        font-size: 18px;
        color: #333;
    }

    .pairings ul li:hover {
        background-color: #f1f1f1;
        transform: translateY(-2px);
    }

    .pairings ul li p {
        font-size: 16px;
        color: #555;
    }

    .pairings p {
        font-size: 18px;
        color: #333;
        margin-top: 20px;
    }

    .cookie-container {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        background: #222;
        color: #fff;
        padding: 15px;
        text-align: center;
        border-radius: 5px;
        display: block; 
      }
      .cookie-container button {
        background: #ff9800;
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        color: #fff;
        margin-left: 10px;
      }
      
    
    @media (max-width: 768px) {
        h1 {
            font-size: 28px;
        }

        h2 {
            font-size: 24px;
        }

        main {
            padding: 15px;
        }

        ul li {
            flex-direction: column;
            text-align: center;
            padding: 15px;
        }

        ul li img {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }

        .cta {
            width: 100%;
            font-size: 16px;
        }
    }