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

.hero-section {
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

.services {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

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

.service-item {
    background: #e3e7eb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

footer {
    background: #1c1c1c;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: #8ab4f8;
    text-decoration: none;
}
