/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root {
    --primary: #1f3c88;
    --accent: #f4b400;
    --text: #333;
    --bg-light: #f9f9f9;
}

/* Base */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

.section {
    padding: 3rem 1.5rem;
    max-width: 1100px;
    margin: auto;
}

.bg-light {
    background: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
}

/* Hero */
.hero {
    min-height: 70vh;
    background: linear-gradient(rgba(31, 60, 136, 0.85),
            rgba(31, 60, 136, 0.85)),
        url('images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-size: 2rem;
}

.hero p {
    margin-top: 1rem;
}

/* About */
.about-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-wrapper img {
    max-width: 200px;
    border-radius: 8px;
}

.owner-name {
    margin-top: 1rem;
    font-weight: bold;
}

/* Services */
.services-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card ul {
    margin-top: 1rem;
    list-style: disc;
    padding-left: 1.2rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

/* Footer */
footer {
    background: var(--primary);
    color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-wrapper {
        flex-direction: row;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}