* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1a365d;
    --color-accent: #2563eb;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-background: #ffffff;
    --color-background-alt: #f9fafb;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 4rem 0 3rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #2c5282;
    letter-spacing: -0.02em;
}

.services {
    flex: 1;
    padding: 2rem 0;
}

.services h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.services ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.services li {
    padding: 1.5rem;
    background-color: var(--color-background-alt);
    border-radius: 8px;
    border-bottom: 3px solid #2c5282;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.services li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(44, 82, 130, 0.15);
}

.services h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.services p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact {
    text-align: center;
    padding: 3rem 0;
}

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2c5282 0%, #1e3a5f 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 82, 130, 0.4);
}

.contact-button:active {
    transform: translateY(0);
}

footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

footer p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .services ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.75rem;
    }

    header {
        padding: 3rem 0 2rem;
    }

    .services h2 {
        font-size: 1.25rem;
    }
}
