body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
}

.navbar a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.hero {
    height: 90vh;
    background: linear-gradient(to bottom right, #005bea, #00c6fb);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 40px;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 48px;
}

.hero p {
    font-size: 18px;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #005bea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.section {
    padding: 80px 40px;
    text-align: center;
}

.services .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    padding: 25px;
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.contact .email-link {
    color: #005bea;
    font-size: 18px;
    text-decoration: none;
}

footer {
    padding: 20px;
    text-align: center;
    background: #fafafa;
    margin-top: 40px;
}
