        /* General Reset & Body Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #0f1115; /* Dark background to match the rugged theme */
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            text-align: center;
            background-image: radial-gradient(circle at center, #1a1e24 0%, #08090a 100%);
        }

        /* Container for the content */
        .container {
            max-width: 800px;
            padding: 40px 20px;
            width: 100%;
        }

        /* Logo Styling */
        .logo {
            max-width: 100%;
            height: auto;
            width: 500px;
            margin-bottom: 30px;
            /* Adds a subtle green glow behind the logo */
            filter: drop-shadow(0 0 2px rgba(89, 204, 20, 0.15));
        }

        /* Typography */
        h1 {
            font-weight: 900;
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: #f4f4f4;
        }

        /* Highlight word in the header to match the logo green */
        h1 span {
            color: #63d114; 
        }

        p {
            font-size: 1.2rem;
            color: #a0aab2;
            margin-bottom: 40px;
            line-height: 1.6;
        }
		
		p span {
            font-size: 1.2rem;
            color: #63d114;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        /* Email Form */
        .notify-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto 40px auto; /* Added bottom margin to separate from contact info */
        }

        @media (min-width: 600px) {
            .notify-form {
                flex-direction: row;
            }
        }

        input[type="email"] {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid #2a2e35;
            background-color: #16191e;
            color: #fff;
            border-radius: 6px;
            font-family: inherit;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        input[type="email"]:focus {
            border-color: #63d114;
        }

        input[type="email"]::placeholder {
            color: #555c66;
        }

        button {
            padding: 15px 30px;
            background: linear-gradient(to bottom, #72eb17, #53b011);
            color: #000;
            border: none;
            border-radius: 6px;
            font-family: inherit;
            font-weight: 900;
            font-size: 1rem;
            text-transform: uppercase;
            cursor: pointer;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(89, 204, 20, 0.3);
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(89, 204, 20, 0.5);
            background: linear-gradient(to bottom, #7df227, #5bc213);
        }

        /* Contact Info Section */
        .contact-info {
            padding-top: 30px;
            border-top: 1px solid #2a2e35;
            margin-top: 20px;
        }

        .contact-info h3 {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #f4f4f4;
            margin-bottom: 15px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 1rem;
            color: #a0aab2;
        }

        @media (min-width: 600px) {
            .contact-details {
                flex-direction: row;
                justify-content: center;
                gap: 30px;
            }
        }

        .contact-details a {
            color: #63d114;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: #7df227;
            text-decoration: underline;
        }

        /* Footer */
        .footer {
            margin-top: 50px;
            font-size: 0.9rem;
            color: #4a5059;
        }