.landing-page {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.header {
    background: #4A90E2;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
}

.header p {
    font-size: 1.2em;
}

.nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: #f1f1f1;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #4A90E2;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #3584D5;
}

.section {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.section:hover {
    transform: translateY(-5px);
}

.footer {
    text-align: center;
    padding: 10px 0;
    background: #4A90E2;
    color: #fff;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
    }
}

/* Accessibility styles */
:focus {
    outline: 2px dashed #4A90E2;
}

@media (prefers-reduced-motion: reduce) {
    .section {
        transition: none;
    }
}