﻿body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
}

h3 {
    color: #34495e;
}

.service {
    background-color: #ffffff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 8px 14px rgba(0,0,0,0.1);
}

.price {
    font-weight: 700;
    color: #27ae60;
    font-size: 22px;
    margin: 6px 0 10px;
}

.contact {
    margin-top: 40px;
    padding: 15px;
    background-color: #ecf0f1;
    border-radius: 5px;
}
.pricing-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 16px;
}

.pricing-hero h1 {
    margin: 0 0 6px;
    font-size: 32px;
    letter-spacing: .2px;
}

.pricing-hero p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

.pill {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 12px;
    color: #333;
    background: #fafafa;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.card {
    grid-column: span 12;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 16px;
    background: #fff;
}

@media (min-width: 900px) {
    .card.half {
        grid-column: span 6;
    }

    .card.third {
        grid-column: span 4;
    }
}

.card h2 {
    margin: 0 0 8px;
    font-size: 18px;
}

.muted {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #333;
}

    .list li {
        margin: 6px 0;
    }

.section-title {
    margin-top: 28px;
    font-size: 20px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 22px 0;
}

.note {
    font-size: 12.5px;
    color: #555;
    line-height: 1.5;
}

.btnrow {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/*.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #222;
    background: #fafafa;
}

    .btn.primary {
        background: #111;
        color: #fff;
        border-color: #111;
    }*/

.kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 12px;
    padding: 2px 6px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    background: #fafafa;
}
/* Section spacing */
h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Service card hover effect */
.service {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

    .service:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 20px rgba(0,0,0,0.12);
    }

/* Price styling refinement */
.price {
    font-size: 20px;
    letter-spacing: 0.3px;
}

/* Clean bullet list spacing */
.service ul {
    margin-top: 10px;
    padding-left: 20px;
}

    .service ul li {
        margin-bottom: 6px;
    }

/* Contact section improvement */
.contact {
    text-align: center;
}

    .contact .btn {
        padding: 12px 22px;
        font-size: 16px;
    }

/* Muted text */
.muted {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Mobile optimization */
@media (max-width: 768px) {
    body {
        margin: 10px;
    }

    .service {
        padding: 12px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .price {
        font-size: 18px;
    }
}

