/* ===== BASIC RESET ===== */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

/* ===== COLORS ===== */
:root {
    --primary:#2b4e68;
    --light:#4fa3c2;
    --bg:#f5f7fa;
    --text:#333333;
    --muted:#666666;
    --card:#ffffff;
}

/* ===== PAGE ===== */
body {
    background:var(--bg);
    color:var(--text);
    line-height:1.5;
}

/* ===== HEADER ===== */
header {
    background:white;
    border-bottom:1px solid #dddddd;
    padding:10px 0;
}

.nav-wrap {
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

.nav-left {
    display:flex;
    align-items:center;
}

.nav-left img {
    width:50px;
    height:auto;
    margin-right:12px;
}

.nav-left-title {
    font-size:18px;
    font-weight:bold;
    color:var(--primary);
}

.nav-links a {
    margin-left:20px;
    color:var(--primary);
    text-decoration:none;
    font-weight:bold;
}

.nav-links a:hover {
    color:var(--light);
}

/* ===== HERO ===== */
.hero {
    max-width:1100px;
    margin:0 auto;
    padding:40px 20px;
    display:flex;
    align-items:center;
    gap:40px;
}

.hero-text {
    flex:1;
}

.hero-text h1 {
    font-size:32px;
    color:var(--primary);
    margin-bottom:15px;
}

.hero-text p {
    font-size:16px;
    color:var(--muted);
    margin-bottom:15px;
}

.hero-buttons a {
    display:inline-block;
    background:var(--primary);
    color:white;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    margin-right:10px;
    margin-bottom:8px;
}

.hero-buttons a:hover {
    background:var(--light);
}

.hero img {
    width:260px;
    height:auto;
}

/* ===== SECTIONS ===== */
section {
    max-width:1100px;
    margin:0 auto;
    padding:50px 20px;
}

.section-title {
    font-size:26px;
    font-weight:bold;
    margin-bottom:5px;
    color:var(--primary);
}

.section-sub {
    color:var(--muted);
    margin-bottom:30px;
}

/* ===== SERVICE GRID ===== */
.service-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}

.service-card {
    background:white;
    padding:20px;
    border-radius:10px;
    border:1px solid #e0e0e0;
    text-align:center;
}

.service-card img {
    width:90px;
    height:auto;
    margin-bottom:10px;
}

.service-card h3 {
    font-size:18px;
    color:var(--primary);
    margin-bottom:8px;
}

.service-card p {
    font-size:14px;
    color:var(--muted);
}

/* ===== PRICING ===== */
.pricing-note {
    font-size:14px;
    color:var(--muted);
    margin-bottom:20px;
}

.pricing-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
    gap:20px;
}

.pricing-card {
    background:white;
    padding:20px;
    border-radius:10px;
    border:1px solid #e0e0e0;
}

.pricing-card h3 {
    font-size:18px;
    color:var(--primary);
    margin-bottom:8px;
}

.pricing-price {
    font-size:20px;
    font-weight:bold;
    color:var(--primary);
    margin-bottom:5px;
}

.pricing-small {
    font-size:13px;
    color:var(--muted);
}

/* ===== ABOUT ===== */
.about-text ul {
    padding-left:18px;
    margin-top:10px;
}

.about-text li {
    margin-bottom:6px;
}

/* ===== CONTACT ===== */
.contact-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.contact-card {
    background:white;
    padding:20px;
    border-radius:10px;
    border:1px solid #e0e0e0;
}

label {
    display:block;
    font-size:14px;
    font-weight:bold;
    margin-bottom:4px;
}

input,
textarea {
    width:100%;
    padding:10px;
    border:1px solid #cccccc;
    border-radius:6px;
    margin-bottom:12px;
    font-size:14px;
}

textarea {
    height:120px;
}

button {
    background:var(--primary);
    color:white;
    padding:12px 20px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-weight:bold;
}

button:hover {
    background:var(--light);
}

/* ===== FOOTER ===== */
footer {
    text-align:center;
    padding:30px 0;
    color:var(--muted);
    font-size:14px;
}

.footer-bot {
    width:120px;
    margin-top:10px;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {

    .nav-wrap {
        flex-direction:column;
        align-items:flex-start;
        padding:10px 15px;
    }

    .nav-left-title {
        font-size:16px;
    }

    .nav-links {
        width:100%;
        margin-top:8px;
        display:flex;
        justify-content:space-around;
    }

    .nav-links a {
        margin-left:0;
        font-size:14px;
    }

    .hero {
        flex-direction:column;
        text-align:center;
        padding:25px 15px;
    }

    .hero-text h1 {
        font-size:26px;
    }

    .hero img {
        width:210px;
    }

    section {
        padding:30px 15px;
    }

    .contact-grid {
        grid-template-columns:1fr;
    }
}

/* Very small screens */
@media (max-width: 480px) {

    .hero-text h1 {
        font-size:22px;
    }

    .section-title {
        font-size:22px;
    }

    .service-card img {
        width:70px;
    }
}

/* ===== FOOTER BADGES ===== */
.footer-line {
    margin-bottom: 10px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-badge {
    border: 1px solid #cccccc;
    border-radius: 12px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--muted);
    background: #ffffff;
}

/* Stack nicely on small screens */
@media (max-width: 480px) {
    .footer-badges {
        flex-direction: column;
        align-items: center;
    }
}