body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #002D72, #001233);
    color: #fff;
    overflow-x: hidden;
}

header {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #00b0ff;
}

.cta-button {
    background: #00b0ff;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #008ecf;
    transform: scale(1.05);
}

.container {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 1rem 2rem;
}

.section {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    margin-top: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.section:hover {
    background: rgba(255, 255, 255, 0.15);
}

section h2 {
    margin-top: 0;
    font-weight: 500;
}

section p {
    font-size: 1.2rem;
    line-height: 1.6;
}

footer {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
}

footer .container {
    max-width: 1200px;
    margin: auto;
}
