body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    color: #333;
}

header {
    background: #002f6c;
    background: url('./cover_image_resized.webp');
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin: 0;
}

header p {
    font-size: 20px;
    margin-top: 10px;
}

section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    margin-top: 0;
    color: #0c8ae2;
}

.cta-section {
    background: #0c8ae2;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    margin: 0 0 20px 0;
}

.cta-section .button {
    background: #ffcb05;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    color: black;
    text-decoration: none;
}

footer {
    background: #001b3d;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 14px;
}