/*
Theme Name: Pollution & Insurance Service
Theme URI: https://example.com
Author: ChatGPT
Description: A modern WordPress theme for vehicle pollution certificate and insurance services.
Version: 1.0
*/

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

header {
    background: linear-gradient(90deg, #0a7f3f, #16b85f);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

nav {
    background: #111;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    background: white;
}

.hero h2 {
    color: #0a7f3f;
    font-size: 40px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.price {
    color: #16b85f;
    font-size: 28px;
    font-weight: bold;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    background: #16b85f;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 15px;
}