/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.3em;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Navigation */
nav {
    background-color: #2a5298;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

/* Main content */
main {
    background-color: white;
    margin: 40px auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section {
    margin-bottom: 60px;
}

.section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #1e3c72;
    font-size: 2.2em;
    margin-bottom: 25px;
    border-bottom: 3px solid #2a5298;
    padding-bottom: 10px;
}

h3 {
    color: #2a5298;
    font-size: 1.5em;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card p {
    font-size: 1em;
    margin-bottom: 0;
}

.card a {
    color: #2a5298;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.card a:hover {
    border-bottom-color: #2a5298;
}

/* Services */
.services-content ul {
    list-style-position: outside;
    margin-left: 25px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.services-content li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.services-content strong {
    color: #1e3c72;
}

.highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    font-size: 1.1em;
    margin-top: 25px;
}

/* Contact */
.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1.1em;
}

.contact-info a {
    color: #2a5298;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-info a:hover {
    border-bottom-color: #2a5298;
}

/* Footer */
footer {
    background-color: #1e3c72;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer p {
    margin-bottom: 5px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95em;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    nav .container {
        flex-direction: column;
        gap: 15px;
    }

    main {
        padding: 25px;
        margin: 20px auto;
    }

    h2 {
        font-size: 1.8em;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }
}
