body {
            margin: 0;
            padding: 0;
            font-family: 'Nunito Sans', Arial, sans-serif;
            color: white;
            position: relative;
            background-color: #2d3436; /* Keep original background as fallback */
        }

.contact-page {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Aurora Background */
        .gradient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(-45deg, #2d3436, #2c2c54, #40407a, #2d3436);
            background-size: 400% 400%;
            animation: aurora 15s ease infinite;
        }

        @keyframes aurora {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

.hero {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

.contact-page .hero {
            height: auto;
            align-items: center;
            padding: 1.75rem 0 0.75rem;
        }

.container {
            padding: 2rem;
            border-radius: 8px;
            text-align: center;
            max-width: 600px;
            width: 80%;
            cursor: default;
            position: relative; /* Ensures content is above gradients */
            z-index: 1; /* Positions content above the background */
        }

.contact-page .container {
            max-width: 520px;
            width: 100%;
            padding: 1.5rem;
            box-sizing: border-box;
        }

h1 {
            font-size: 7rem;
            margin: 0.25em 0;
            letter-spacing: 4px;
            font-family: 'Cherry Bomb One', system-ui;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        h1:hover {
            color: #fdcb6e;
            text-shadow: 0 0 30px rgba(253, 203, 110, 0.4);
            transform: scale(1.02);
        }

.contact-title {
            font-family: 'Nunito Sans', Arial, sans-serif;
            font-size: 3rem;
            letter-spacing: 1px;
            margin-bottom: 0.35rem;
        }

        p {
            font-size: 0.9rem;
            line-height: 1.7;
            font-weight: 600;
        }

        a   {
            color: white;
            font-size: 0.9em;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        ::selection {
            background-color: #fdcb6e47;
        }

.main-nav {
            margin-top: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .main-nav a {
            color: white;
            text-decoration: none;
            font-size: 0.95em;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.75rem;
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            background-color: rgba(255, 255, 255, 0.08);
            letter-spacing: 0.5px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .main-nav a:hover,
        .main-nav a:focus-visible {
            color: #2d3436;
            background-color: #fdcb6e;
            border-color: #fdcb6e;
            box-shadow: 0 10px 28px rgba(253, 203, 110, 0.35), 0 0 15px rgba(253, 203, 110, 0.5);
            transform: translateY(-2px) scale(1.05);
            outline: none;
        }

.content-section {
            padding: 4rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

.content-section:last-child {
            margin-bottom: 90px;
        }

.contact-page .content-section:last-child {
            margin-bottom: 0.75rem;
        }

.content-section h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #fdcb6e;
        }

.contact-page .content-section {
            padding: 0.75rem 0 0.5rem;
            max-width: 520px;
            width: 100%;
            box-sizing: border-box;
        }

.product-card.contact-card {
            text-align: center;
            max-width: 520px;
            margin: 0 auto;
            padding: 1.5rem;
            box-sizing: border-box;
        }

        .contact-email {
            color: #fdcb6e;
            font-weight: 800;
            letter-spacing: 0.8px;
        }

.contact-copy-row {
            display: inline-flex;
            align-items: stretch;
            border: 1px solid rgba(253, 203, 110, 0.45);
            background-color: rgba(253, 203, 110, 0.08);
            border-radius: 999px;
            overflow: hidden;
            box-shadow: 0 10px 28px rgba(253, 203, 110, 0.08);
            margin-top: 0.65rem;
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }

.contact-copy-row:hover {
            box-shadow: 0 12px 32px rgba(253, 203, 110, 0.14);
            transform: translateY(-1px);
        }

.contact-email-pill {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.4rem;
            color: #fdcb6e;
            font-weight: 800;
            letter-spacing: 1px;
            border-right: none;
            padding-right: 1.1rem;
        }

.copy-button {
            border: none;
            background: linear-gradient(135deg, #fdcb6e, #f7971e);
            color: #2d3436;
            padding: 0.6rem 1rem;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
            border-radius:999px;
        }

.copy-button:hover,
        .copy-button:focus-visible {
            background: linear-gradient(135deg, #ffe29f, #ffc107);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 8px 20px rgba(253, 203, 110, 0.3);
            outline: none;
        }

.copy-button:active {
            transform: translateY(1px);
        }

.copy-icon {
            width: 16px;
            height: 16px;
            display: block;
            fill: currentColor;
        }

.back-link {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 800;
            font-size: 1.25rem;
            padding: 0.35rem 0.65rem;
            border-radius: 12px;
            border: none;
            background: transparent;
            transition: all 0.2s ease;
        }

.back-link:hover,
        .back-link:focus-visible {
            color: #2d3436;
            background-color: #fdcb6e;
            border: 1px solid #fdcb6e;
            box-shadow: 0 8px 20px rgba(253, 203, 110, 0.3);
            outline: none;
        }

.contact-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

.contact-shell {
            position: relative;
            width: 100%;
            max-width: 520px;
        }

        .products-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1rem 0;
        }

        .product-card {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 16px;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex: 0 0 300px;
            position: relative;
        }

        .product-card p a {
            text-decoration: none;
            transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .product-card p a:hover {
            color: #fdcb6e;
        }

        .beta-badge {
            display: block;
            width: -moz-fit-content;
            width: fit-content;
            margin: 1.5rem auto 0;
            padding: 0.3rem 0.8rem;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.8);
        }

        .product-logo {
            display: block;
            margin: 0 auto 1rem;
            height: 64px;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .product-card:hover {
            transform: translateY(-8px);
            background-color: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(253, 203, 110, 0.2);
            border-color: rgba(253, 203, 110, 0.3);
        }

        .product-card:hover .product-logo {
            transform: scale(1.1);
        }

        .product-card h3 {
            font-size: 1.5rem;
            text-align: center;
            margin-top: 0;
        }

        .product-card p {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
        }

        .team-grid {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .team-member {
            text-align: center;
            max-width: 700px;
        }

        .team-member h3 {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }

        .team-member p {
            margin-top: 0;
            font-weight: 400;
            font-size: 1rem;
        }

        .site-footer {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            margin: 4rem auto 2rem;
            padding: 2.5rem 2rem 1.5rem;
            max-width: 1000px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-column {
            min-width: 180px;
        }

        .footer-title {
            margin: 0 0 0.35rem;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .footer-title-brand {
            font-weight: 700;
            letter-spacing: 1px;
        }

        .footer-title-semi {
            font-weight: 600;
        }

        .footer-link {
            display: block;
            margin-bottom: 0.35rem;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .footer-link:hover,
        .footer-link:focus-visible {
            color: #fdcb6e;
            outline: none;
        }

        .team-member .description {
            text-align: left;
            margin-top: 1rem;
        }

        @media screen and (max-width: 700px) {
            .products-grid {
                justify-content: flex-start;
                overflow-x: auto;
                scrollbar-width: thin;
                scrollbar-color: #fdcb6e #2d3436;
            }

            .product-card {
                flex: 0 0 70%;
            }

            .products-grid::-webkit-scrollbar {
                height: 8px;
            }

            .products-grid::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.05);
                border-radius: 4px;
            }

            .products-grid::-webkit-scrollbar-thumb {
                background-color: #fdcb6e;
                border-radius: 4px;
            }

            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        /* Add these media queries for responsive design */
        @media screen and (max-width: 768px) {
            .container {
                width: 90%;
                padding: 1.5rem;
            }

            h1 {
                font-size: 6rem; /* Smaller font size on tablets */
                letter-spacing: 2px;
            }

            .content-section {
                padding: 3rem 1.5rem;
            }

            .content-section h2 {
                font-size: 2.5rem;
            }
        }

        @media screen and (max-width: 480px) {
            .container {
                width: 95%;
                padding: 1rem;
            }

            h1 {
                font-size: 5rem; /* Even smaller font size on phones */
                letter-spacing: 2px;
            }

            p {
                font-size: 0.85rem;
                line-height: 1.6;
            }

            .content-section {
                padding: 2rem 1rem;
            }

            .content-section h2 {
                font-size: 2rem;
            }

            .product-card p {
                font-size: 0.95rem;
            }

            .site-footer {
                padding: 2rem 1rem 1rem;
            }
        }
