        body {
            font-family: 'Amazon Ember', Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
        }


        /* Header Styles */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #232f3e;
            color: white;
            padding: 20px;
        }

        header img {
            max-width: 150px;
            height: auto;
        }

        /* Menu Styles */
        header nav {
            display: flex;
        }

        header nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        header nav ul li {
            margin-left: 20px;
        }

        header nav ul li:first-child {
            margin-left: auto;
        }

        header nav ul li a {
            text-decoration: none;
            color: white;
            font-weight: bold;
            font-size: 16px;
            transition: color 0.3s;
        }

        header nav ul li a:hover {
            color: #febd69;
        }

        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background-color: white;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        h2 {
            margin: 10px 0;
        }
        p {
            margin: 0 0 20px;
        }
        .topSection {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .content, .contentAdditional {
            flex: 1;
            max-width: 600px;
padding: 20px;
        }
        .deal {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .deal img {
            width: 100%;
            height: auto;
            border-bottom: 1px solid #ddd;
        }
        .deal-content {
            padding: 15px;
        }
        .deal h2 {
            margin-top: 0;
        }
        .deal p {
            color: #555;
        }
        .deal a {
            display: block;
            background-color: #febd69;
            color: #111;
            text-align: center;
            text-decoration: none;
            padding: 10px;
            border-radius: 0 0 8px 8px;
            transition: background-color 0.3s;
        }
        .deal a:hover {
            background-color: #ffcc33;
        }
        .section {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 20px;
        }
        .deals-section {
            flex: 1;
            margin-right: 20px;
			width: 300px;
        }
        .carousel-container {
            max-width: 600px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .carousel iframe {
            width: 120px;
            height: 240px;
            margin: 0 5px;
            border: none;
        }
        .blurb {
            flex: 1;
            background-color: #e0e0e0;
            padding: 20px;
            border-radius: 8px;
        }
        footer {
            background-color: #232f3e;
            color: white;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
			left: 0;
        }
	footer a {
            text-decoration: none;
            color: white;
            font-size: 10px;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #febd69;
        }


        .carousel-container {
            position: relative;
        }

        .carousel-prev, .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            cursor: pointer;
            color: #333;
            background-color: #fff;
            border: 1px solid #ddd;
            padding: 10px;
            border-radius: 50%;
        }

        .carousel-prev {
            left: 10px;
        }

        .carousel-next {
            right: 10px;
        }


        .gdpr-popup {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            padding: 20px;
            border-radius: 8px;
            max-width: 300px;
            text-align: center;
        }

        .gdpr-popup button {
            background-color: #232f3e;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
        }