body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #000428, #004e92);
    color: #fff;
    overflow-x: hidden;
    display: flex;  /* Use flexbox for centering */
    flex-direction: column; /* Stack content vertically */
    min-height: 100vh; /* Ensure full viewport height */
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><linearGradient id="gradient"><stop offset="0%" stop-color="%234A00E0"/><stop offset="100%" stop-color="%238E2DE2"/></linearGradient><pattern id="diagonalLines" width="10" height="10" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="10" y2="10" style="stroke: rgba(255, 255, 255, 0.1); stroke-width: 2;"/></pattern></defs><rect width="100%" height="100%" fill="url(%23diagonalLines)"/></svg>');
    opacity: 0.4;
    z-index: -1;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(-25%, -25%);
    }
    100% {
        transform: translate(0%, 0%);
    }
}

.content-container {
    flex: 1;          /* Fill remaining vertical space */
    display: flex;    /* Center content horizontally and vertically */
    justify-content: center;
    align-items: center;
    font-size: 5em;   /* Big text */
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
}

h1 {
    margin: 0;
}

footer {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: center;
    padding: 1em 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
}

footer a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* Privacy Policy Styles (no change) */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #000428, #004e92);
    color: #fff;
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><linearGradient id="gradient"><stop offset="0%" stop-color="%234A00E0"/><stop offset="100%" stop-color="%238E2DE2"/></linearGradient><pattern id="diagonalLines" width="10" height="10" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="10" y2="10" style="stroke: rgba(255, 255, 255, 0.1); stroke-width: 2;"/></pattern></defs><rect width="100%" height="100%" fill="url(%23diagonalLines)"/></svg>');
    opacity: 0.4;
    z-index: -1;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(-25%, -25%);
    }
    100% {
        transform: translate(0%, 0%);
    }
}

header {
    background: rgba(0, 0, 0, 0.5);
    padding: 2em 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 2.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

nav {
    background: rgba(0, 0, 0, 0.3);
    padding: 1em 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

nav a {
    margin: 0 1.5em;
    text-decoration: none;
    color: #eee;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #fff;
}

main {
    padding: 2em;
}

.hero {
    text-align: center;
    padding: 3em 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    margin-bottom: 2em;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 2em;
}

.cta-button {
    display: inline-block;
    padding: 1em 2em;
    background-color: #6c5b7b;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

article {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 1.5em;
    width: calc(45% - 1em); /* Two articles per row */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

article h3 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
}

article p {
    color: #eee;
}

/* Privacy Policy Specific Styling */
.privacy-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.privacy-content h2 {
    font-size: 2.5em;
    margin-bottom: 0.8em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.privacy-content h3 {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.privacy-content p,
.privacy-content li {
    color: #ddd;
    line-height: 1.6;
}

.privacy-content ul {
    list-style-type: disc;
    padding-left: 2em;
}

/* More Futuristic Effects */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}
