body {
        font-family: sans-serif;
        margin: 0;
        padding: 0;
        background-image: radial-gradient(circle at center, rgba(0, 51, 102, 0.9), rgba(0, 0, 0, 0.9));
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100vh;
        backdrop-filter: blur(10px);
    }

    .container {
        width: 90%;
        max-width: 1200px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 10px 20px;
        width: auto;
        position: sticky;
        top: 20px;
        background-image: radial-gradient(circle at center, rgba(0, 150, 255, 0.8), rgba(0, 0, 0, 0.2));
        z-index: 100;
        backdrop-filter: blur(100px);
        right: 20px;
        border-radius: 30px;
    }

    .logo {
        font-size: 2em;
        font-weight: bold;
        padding-left: 20px;
        display: none;
    }

    .nav-links {
        list-style: none;
        display: flex;
        padding: 0 20px;
        margin: 0;
    }

    .nav-links li {
        margin-left: 20px;
    }

    .nav-links a {
        text-decoration: none;
        color: #fff;
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #ddd;
    }

    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 0;
        flex: 1;
        width: 100%;
    }

    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3em;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1.2em;
        margin-bottom: 20px;
    }

    .cta-button {
        display: inline-block;
        padding: 12px 25px;
        background-color: #0056b3;
        color: #fff;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #003366;
    }

    .services {
        width: 100%;
        text-align: center;
        margin-top: 0px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #001f3f 100%);
        padding: 40px 0;
        backdrop-filter: blur(85px);
    }

    .services h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .services-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .service-box {
        background-color: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 10px;
        width: 300px;
        text-align: left;
        backdrop-filter: blur(85px);
    }

    .service-box h3 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .service-box p {
        font-size: 1em;
        line-height: 1.4;
    }

    .grid-container {
        width: 100%;
        background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.8) 100%);
        padding: 40px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(85px);
    }

    .grid-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h50v50H0z'/%3E%3Cpath stroke='%23fff' stroke-width='0.5' d='M0 0h50v50H0z'/%3E%3Cpath stroke='%23fff' stroke-width='0.5' d='M0 10h50M0 20h50M0 30h50M0 40h50M10 0v50M20 0v50M30 0v50M40 0v50'/%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.3;
        z-index: 1;
        background-size: 50px 50px;
    }

    .grid-content {
        text-align: center;
        z-index: 2;
    }

    .grid-content h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }
