:root {
    --brand: #28a745; /* Your Primary Green */
    --brand-dark: #166534; /* Darker, for headings and footer */
    --grey: #4b5563;
    --bg: #f8fafc; /* Light background for sections */
    --card: #ffffff; /* White background for boxed info */
    --text-dark: #0f172a;
    --text-light: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Professional shadow for cards */
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Base & Typography */
body { 
    margin: 0; 
    background: var(--bg); 
    color: var(--text-dark); 
    line-height: 1.6;
}
* {
    box-sizing: border-box;
}
h1, h2, h3 {
    color: var(--brand-dark);
}

/* Headers and Sections */
.section-padding {
    padding: 80px 5%;
    text-align: center;
}
.bg-light {
    background-color: var(--bg);
}
h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.section-subtitle {
    font-size: 1.2em;
    color: var(--grey);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Header & Navigation (Universal) --- */
header { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    background: var(--card); 
    padding: 10px 5%; 
    box-shadow: var(--shadow); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}
.brand .logo { 
    height: 110px; /* **LARGER LOGO SIZE FOR DESKTOP** */
    display: block;
}
nav a { 
    text-decoration: none; 
    color: var(--grey); 
    margin: 0 15px; 
    font-weight: 600; 
    padding: 10px 0;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 3px solid transparent;
}
nav a:hover, nav a.active { 
    color: var(--brand); 
    border-bottom: 3px solid var(--brand);
}
.btn-nav {
    margin-left: 20px;
}

/* --- Buttons & Icons --- */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    display: inline-block;
}
.btn-primary {
    background-color: var(--brand);
    color: var(--text-light);
}
.btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-1px);
}
.icon-brand {
    color: var(--brand);
    font-size: 1.1em;
    margin-right: 8px;
}

/* --- Hero Section --- */
.hero { 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('placeholder-hero.jpg') center/cover;
    height: 60vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    color: var(--text-light);
}
.hero-content {
    max-width: 900px;
    padding: 20px;
}
.hero h1 {
    font-size: 3.8em;
    color: var(--text-light);
    margin-bottom: 0.5em;
    font-weight: 800;
    line-height: 1.1;
}
.hero .tagline {
    font-size: 1.4em;
    margin-bottom: 40px;
    font-weight: 300;
}

/* --- Card/Boxed-In Layout (Used on Home and Services) --- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.info-card {
    background: var(--card);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--brand);
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.info-card h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.4em;
}
.info-card i {
    font-size: 2.5em;
    color: var(--brand);
}

/* FIX: Remove the default bullet point from lists in the info card */
.info-card ul {
    list-style: none; 
    padding-left: 0;
}
.info-card li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

/* --- Content Block (About Page) --- */
.content-block {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}
.content-block p {
    font-size: 1.1em;
    margin-bottom: 25px;
}
.content-block h3 {
    margin-top: 40px;
    border-bottom: 2px solid var(--brand);
    padding-bottom: 5px;
}
.highlight {
    font-weight: 700;
    color: var(--brand);
}
.tag-line {
    font-size: 1.3em;
    font-weight: 600;
    margin-top: 30px;
    color: var(--brand-dark);
}

/* --- Contact Page Specific --- */
.contact-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.contact-form {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: var(--card);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-info {
    flex: 1;
    padding: 30px 0;
}
.contact-info h3 {
    font-size: 1.5em;
    margin-top: 0;
}

/* --- Footer --- */
footer {
    background: var(--brand-dark);
    color: var(--text-light);
    padding: 25px 5%;
    text-align: center;
    font-size: 0.9em;
}
.footer-content p {
    margin: 5px 0;
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
    .brand .logo {
        height: 80px; /* **LARGER LOGO SIZE FOR MOBILE** */
    }
    nav {
        margin-top: 10px;
    }
    nav a {
        margin: 0 8px;
        padding: 5px 0;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .hero .tagline {
        font-size: 1.1em;
    }
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    .contact-info {
        text-align: center;
    }
}