body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #94a3b8;
}

.btn {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #2563eb;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #0f172a;
}

.service-grid {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.service-card h3 {
    color: #1e293b;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
    margin-top: 15px;
}

form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: auto;
}

form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    box-sizing: border-box;
}

form button {
    margin-top: 20px;
    width: 100%;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0f172a;
    color: #94a3b8;
    margin-top: 40px;
}


.email-banner {
    text-align: center;
    background: #e2e8f0;
    padding: 12px;
    border-radius: 6px;
    max-width: 600px;
    margin: 0 auto 20px auto;
    font-weight: bold;
    color: #1e293b;
}

.email-banner a {
    color: #2563eb;
    text-decoration: none;
}

.email-banner a:hover {
    text-decoration: underline;
}