
        body {
            color: #f0f0f0;
            background: #1b1b1b;
            line-height: 1.6;
	    font-family: 'Open Sans', Arial, sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            background: #0b0c10;
            color: #ffffff;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #2c2c2c;
        }

        header h1 {
            font-weight: 800;
            font-size: 2.75rem;
            color: #66ccff;
        }

        nav a {
            margin-left: 2rem;
            font-weight: 600;
            color: #ffffff;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #66ccff;
        }

        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem 2rem;
            background: linear-gradient(135deg, #0b0c10, #111827);
            color: #66ccff;
	    font-size: 11pt;
        }

        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 800px;
            color: #cfd8dc;
        }

        .hero button {
            background: #66ccff;
            color: #0b0c10;
            padding: 1rem 2rem;
            font-weight: 600; 
            border-radius: 0.5rem;
            cursor: pointer;
            transition: 0.3s;
            border: none;
        }

        .hero button:hover {
            background: #3399ff;
            color: #ffffff;
        }

        section {
            padding: 2rem 2rem 0 2rem;
            max-width: 1080px;
            margin: 0 auto;
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: #0b0c10;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
        }

        .feature-card h3 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            color: #66ccff;
        }

        .feature-card p {
            color: #cfd8dc;
        }

        .feature-card button {
            margin-top: 1.5rem;
            background: #66ccff;
            color: #0b0c10;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 0.5rem;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-size: 1rem;
        }

        .feature-card button:hover {
            background: #3399ff;
            color: #ffffff;
        }

        .hero-gallery {
            display: flex;
            flex-wrap: nowrap;
            width: 100%;
            margin: 3rem 0;
            padding: 0;
            max-width: none;
        }

        .hero-gallery img {
            width: 25%;
            height: 300px;
            object-fit: cover;
            display: block;
            margin: 0;
            padding: 0;
        }

        .cta {
            background: #111827;
            color: #ffffff;
            text-align: center;
            padding: 4rem 4rem;
	    margin-top: 2rem;
            border-top: 1px solid #2c2c2c;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #66ccff;
        }

        .cta button {
            background: #66ccff;
            color: #0b0c10;
            padding: 1rem 2rem;
            font-weight: 600;
            border-radius: 0.5rem;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

        .cta button:hover {
            background: #3399ff;
            color: #ffffff;
        }

        footer {
            background: #0b0c10;
            color: #7f8c8d;
            padding: 2rem;
            text-align: center;
            border-top: 1px solid #2c2c2c;
        }

        @media (max-width: 768px) {
            .hero-gallery img {
                width: 50%;
            }
        }

        @media (max-width: 480px) {
            .hero-gallery img {
                width: 100%;
            }
        }

/* Base link style */
a {
    color: #66ccff;        /* primary highlight color */
    text-decoration: none; /* remove underline by default */
    font-weight: 600;      /* optional: match other headings/text weight */
    transition: color 0.2s, text-decoration 0.2s;
}

/* Hover / focus effect */
a:hover,
a:focus {
    color: #99ddff;        /* slightly lighter blue on hover */
    text-decoration: underline; /* optional underline on hover */
    outline: none;         /* remove default focus outline if desired */
}

/* Optional: keyboard focus visible */
a:focus-visible {
    outline: 2px solid #66ccff;
    outline-offset: 2px;
}

/* Optional: visited links */
a:visited {
    color: #5599cc;        /* darker blue for visited links */
}