* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background: #ffffff;
}


.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}


header {
    background: #0b3d91;
    color: white;
    text-align: center;
    padding: 80px 20px;
}


header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}


header p {
    font-size: 20px;
    margin-bottom: 30px;
}


.button {
    display: inline-block;
    background: #f4b400;
    color: #000;
    padding: 12px 25px;
    margin: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}


.button.secondary {
    background: white;
    color: #0b3d91;
}


section {
    padding: 50px 0;
}


h2 {
    text-align: center;
    color: #0b3d91;
    margin-bottom: 25px;
    font-size: 32px;
}


.services {
    background: #f7f9fc;
}


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


.card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}


.card h3 {
    color: #0b3d91;
    margin-bottom: 10px;
}


ul {
    max-width: 600px;
    margin: auto;
    font-size: 18px;
}


.contact {
    background: #eef4ff;
    text-align: center;
}


footer {
    background: #0b3d91;
    color: white;
    text-align: center;
    padding: 20px;
}


@media(max-width:600px){

header h1 {
    font-size: 30px;
}

header p {
    font-size: 17px;
}

h2 {
    font-size: 26px;
}

}
.logo {
    width: 400px;
    height: auto;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .logo {
        width: 200px;
    }
}
