body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    letter-spacing: 0.2px;
}

/* Layout */
.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

/* Header */
header {
    background: #1f2a44;
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #2d3748;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo {
    height: 60px;
}

h1 {
    margin: 0;
    letter-spacing: 1px;
}

.tagline {
    margin-top: 5px;
    font-size: 1em;
    color: #cbd5e1;
}

/* Sections */
section {
    padding: 40px 0;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeIn 0.6s ease forwards;
}

section:nth-of-type(1) { animation-delay: 0.1s; }
section:nth-of-type(2) { animation-delay: 0.2s; }
section:nth-of-type(3) { animation-delay: 0.3s; }
section:nth-of-type(4) { animation-delay: 0.4s; }

section.alt {
    background: #eef2f7;
}

h2 {
    color: #1f2a44;
}

/* Services list */
.services {
    columns: 2;
    padding-left: 20px;
}

.services li {
    margin-bottom: 8px;
}

/* Button */
.button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 18px;
    background: #2b6cb0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.button:hover {
    background: #1e4e8c;
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: #1f2a44;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}