* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    background: linear-gradient(to right, #005bea, #00c6fb);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

header h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

header p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #005bea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

section {
    padding: 70px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.about p,
.address p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: auto;
}

.card p {
    margin-bottom: 15px;
    font-size: 18px;
}

.service-box,
.director-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service,
.director {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

.service h3 {
    margin-bottom: 15px;
    color: #005bea;
}

footer {
    background: #005bea;
    color: white;
    text-align: center;
    padding: 25px;
}

@media(max-width: 768px) {
    header h1 {
        font-size: 28px;
    }

    header p {
        font-size: 16px;
    }
}