body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background-color: #FFFFFF;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    text-align: right;
    font-size: 0.9rem;
    font-weight: 600;
}

header {
    background: #fff;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
}

header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B5E9E;
}

header .contact-info {
    display: flex;
    align-items: center;
}

header .contact-info span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 1.5rem;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s;
}

nav a:hover {
    color: #1B5E9E;
}

nav ul ul {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 10px;
    border-radius: 4px;
    min-width: 180px;
}

nav ul li:hover > ul {
    display: block;
}

nav ul ul li {
    margin: 0;
}

nav ul ul a {
    display: block;
    padding: 8px 12px;
}

/* Buttons */
.btn {
    background-image: linear-gradient(to right, #1B5E9E 0%, #1565C0 100%);
    color: #FFFFFF;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Forms */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 2.5rem;
    border-radius: 8px;
    max-width: 500px;
    margin: 2rem auto 0;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-bg {
    background-color: #F8F9FA;
}

/* Cards (for services, reviews, etc.) */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-basis: 300px;
    flex-grow: 1;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Reviews */
.reviews .card {
    background-color: #f8f9fa;
    border-left: 4px solid #1B5E9E;
}

.review-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-quote {
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
}

.review-quote::before {
    content: '“';
    font-size: 4rem;
    color: #e0e0e0;
    position: absolute;
    top: -20px;
    left: -15px;
    line-height: 1;
}

.review-author {
    font-weight: 600;
    text-align: right;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 3rem 0;
    margin-top: 2rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.sticky-footer-bar {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        margin-top: 1rem;
        align-items: center;
    }

    nav ul li {
        margin: 8px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .sticky-footer-bar {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: #1B5E9E;
        color: white;
        text-align: center;
        padding: 15px 0;
        font-size: 1.2rem;
        font-weight: bold;
        z-index: 1000;
    }

    .sticky-footer-bar a {
        color: white;
        text-decoration: none;
    }
}
