/* General Body and Typography */
:root {
    --primary-color: #2196F3; /* Professional Blue */
    --accent-color: #FF9800; /* Orange for highlights */
    --text-color: #333;
    --light-text-color: #666;
    --background-color: #f8f8f8;
    --card-background: #fff;
    --border-color: #eee;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    font-size: 17px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Header Styling */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Buttons */
.button {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.button:hover {
    background: #e68900; /* Slightly darker orange */
    transform: translateY(-2px);
}

nav {
    margin-top: 1.5rem;
}

nav a {
    margin: 0 10px;
}

.button-small {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2); /* Slightly transparent white */
    color: #fff;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.button-small:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: #fff;
}

/* Main Content Headings */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

h3 small {
    font-size: 0.9rem;
    color: var(--light-text-color);
    font-weight: 400;
}

/* Sections */
section {
    background: var(--card-background);
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

section#about ul,
section#services ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

section#about ul li,
section#services ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 25px;
}

section#about ul li::before,
section#services ul li::before {
    content: '✓'; /* Checkmark icon */
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.team-member {
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

/* Forms */
form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light-text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

form .button {
    width: auto;
    justify-self: start;
    margin-top: 1rem;
}

.quote-results {
    background: #e0f7fa; /* Light blue background */
    border-left: 5px solid var(--primary-color);
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 5px;
}

.quote-results h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.quote-results p {
    margin-bottom: 0.5rem;
}

.quote-results .disclaimer {
    font-size: 0.9rem;
    color: var(--light-text-color);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1.2rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.4rem;
    }
    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2rem;
    }
    .tagline {
        font-size: 1rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.2rem;
    }
    .button {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}
