body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background: linear-gradient(180deg, #f0f4f8, #e9eff5);
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    animation: fadeInDown 1s ease;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
header h1 {
    font-size: 1.8rem;
    color: #0b3d91;
    margin: 0;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: #0b3d91;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    transition: background-color 0.3s, color 0.3s;
}
nav a:hover {
    background: #1e90ff;
    color: #fff;
    border-radius: 5px;
}
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(120deg, rgba(11, 61, 145, 0.85), rgba(30, 144, 255, 0.85)), url('images/hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    animation: fadeIn 2s ease;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInText 3s ease forwards;
    animation-delay: 0.5s;
}
.hero p {
    font-size: 1.3rem;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInText 3s ease forwards;
    animation-delay: 1s;
}
@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}
.section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.section h2 {
    color: #1e90ff;
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.services ul {
    list-style: none;
    padding: 0;
}
.services li {
    background: #eef6fc;
    margin-bottom: 15px;
    padding: 15px;
    border-left: 5px solid #1e90ff;
    border-radius: 5px;
    transition: transform 0.3s ease;
}
.services li:hover {
    transform: scale(1.05);
    background: #dff0ff;
}
footer {
    background: #0b3d91;
    color: #fff;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1.5s ease;
}
input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: box-shadow 0.3s ease;
}
input:focus, textarea:focus {
    box-shadow: 0 0 5px rgba(30,144,255,0.5);
    outline: none;
}
button {
    background: #1e90ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: #0b3d91;
}