        /* Reset default styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background: #f8c579;
            color: #303234;
            line-height: 1.6;
            overflow-x: hidden;
        }

        main {
            padding: 0 20px;
            /* Add padding to the body */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            /* Remove padding from the container */
            overflow-wrap: break-word;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #24292b 0%, #1c1d1e 100%);
            /* background-color: #293032; */
            color: #F8EDE3;
            text-align: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        header .logo-header {
            height: 120px;
            width: auto;
            margin-bottom: 15px;
        }

        header p {
            font-size: 1.5rem;
            opacity: 0.9;
            margin-bottom: 20px;
        }

        /* Main Section */
        .installer-section {
            padding: 60px 0;
            text-align: center;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            margin: 60px 0;
        }

        h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #2f3639;

            text-align: center;
        }

        .installer-section p {
            max-width: 600px;
            margin: 0 auto 1.5rem;
            color: #1b1d1f;
        }

        .device-selection {
            max-width: 600px;
            margin: 0 auto 1.5rem;
            text-align: right;
        }

        .device-selection label p {
            margin: 0 1.5rem;

        }

        .device-selection label {
            display: flex;
            align-items: center;
            margin: 0.5rem 0;
            font-size: 1.1rem;
            color: #232628;
            text-align: left;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #fdae37, #fec56e);
            color: #1e1c1a;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            font-size: large;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeIn 1s ease-in 0.6s both;
            margin: 5px;
            border: none;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
        }

        esp-web-install-button {
            display: inline-block;
            margin: 0.5rem 0;
        }

        esp-web-install-button.install-button-disabled .cta-button {
            background: #cccccc;
            color: #666666;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        esp-web-install-button .unsupported-msg {
            color: red;
            font-weight: bold;
        }

        .instructions-section {
            margin: 60px 0;
            background: #fff;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease-in;

        }

        .instructions {
            text-align: left;
            padding: 1.5rem;
            border-radius: 8px;

        }

        .instructions h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #292e30;
        }

        .instructions ol {
            padding-left: 1.5rem;
            /* margin-bottom: 1rem; */
            color: #18191a;
            margin: 0 auto 1.5rem;
            max-width: 800px;
        }

        .instructions li {
            margin-bottom: 0.5rem;
        }

        .instructions p {
            color: #202223;
        }

        /* Footer Styles */
        footer {
            background: #272a2d;
            color: #F8EDE3;
            text-align: center;
            padding: 30px 20px;
            margin-top: 60px;
        }

        footer p {
            margin-bottom: 10px;
        }

        footer a {
            color: #fdae37;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Old Releases Toggle */
        .old-releases-toggle {
            display: block;
            margin: 0.8rem auto 0.5rem auto;
            padding: 8px 16px;
            background: #fec775;
            border: 1px solid #252a2b;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.9rem;
            color: #1a1b1c;
            transition: all 0.2s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .old-releases-toggle:hover {
            background: #E0D8D0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transform: translateY(-1px);
        }

        .old-releases-toggle:active {
            transform: translateY(0);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .old-releases-section {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .old-releases-section.expanded {
            max-height: 800px;
        }

        .old-releases-label {
            font-size: 0.95rem;
            color: #7f8c8d;
            display: block;
            text-align: center;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            header .logo-header {
                height: 80px;
                width: 100%;
            }

            header h1 {
                font-size: 2.5rem;
            }

            header p {
                font-size: 1.2rem;
            }

            .installer-section h2 {
                font-size: 1.8rem;
            }

            .container {
                padding: 0 15px;
            }

            .device-selection label {
                margin: 0.5rem 0;
            }
        }

        @media (max-width: 480px) {
            header h1 {
                font-size: 2rem;
            }

            .installer-section {
                padding: 20px;
            }
        }
