* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
    line-height: 1.6;
    background: #fafafa; /* subtle frame around site */
}

.page {
    max-width: 1100px;   /* slightly smaller than viewport */
    margin: 2rem auto;   /* creates space around the site */
    background: #ffffff;
    border-radius: 8px;  /* optional, but looks premium */
    overflow: hidden;    /* keeps sections clean */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem; /* was too large */
}


.hero {
    text-align: center;
    padding: 3rem 1.5rem 2.5rem;
}


h1 {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    text-align: center;
}


h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}
h3{
text-align: center;
}
p {
    text-align: center;
}

.subhead {
    font-size: 1.25rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 2rem;
    margin-bottom: 1.25rem;
}

.section {
    background: #fff;
    padding: 2.5rem 0;
}

.section.light {
    background: #f9f9f9;
    padding: 2.25rem 0;
}

.section.dark {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 3rem 0;
}

.services,
.process {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.services li,
.process li {
    margin-bottom: 0.4rem;
}

.points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.btn {
    display: inline-block;
    background: #f5a623;
    color: #111;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.btn-light {
    background: #fff;
    color: #111;
}

.footer {
    text-align: center;
    padding: 1.25rem 1rem;
    font-size: 0.85rem;
    color: #666;
}
.nav {
    padding: 1.5rem;
}

.nav-container {
    max-width: 960px;
    margin: 0 auto;
}

.logo {
    width: 48px;
    height: auto;
}
.brand {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem 1rem; /* reduced */
}

.brand a {
    display: inline-block;
}


.brand-logo {
    width: 200px;
    max-width: 35vw;
    height: auto;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

@media (min-width: 768px) {
    .section {
        padding: 2rem 0;
    }
}
@media (min-width: 1200px) {
    .page {
        max-width: 1050px;
    }
}
 /* Success message style */
        .flash-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
            padding: 12px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .flash-success svg {
            margin-right: 10px;
        }
