/* Reset some default browser styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}

/* Header */
.site-header {
    text-align: center;
    padding: 20px;
}
header img.logo {
    width: 300px;
    margin-bottom: 10px;
}
nav {
    margin-top: 10px;
}
nav a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1em;
}
nav a:hover {
    color: #007BFF;
}

/* Hero Section */
.hero {
    background: #f4f4f4;
    text-align: center;
    padding: 80px 20px;
}
.hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
}
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: #007BFF;
    color: white;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}
.cta-button:hover {
    background: #0056b3;
}

/* Sections */
.section-light {
    background: #f4f4f4;
    text-align: center;
    padding: 60px 20px;
}
.section-white {
    background: #ffffff;
    text-align: center;
    padding: 60px 20px;
}
.section-light h2, .section-white h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
}
.section-light p, .section-white p {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
}
.link-button {
    display: inline-block;
    padding: 10px 24px;
    background: #28a745;
    color: white;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    text-decoration: none;
}
.link-button:hover {
    background: #218838;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #f1f1f1;
    color: #666;
    margin-top: 40px;
}
footer a {
    color: #007BFF;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer p {
    margin: 5px 0;
}
.footer-links {
    margin-bottom: 10px;
}
.footer-links a {
    margin: 0 10px;
    display: inline-block;
}
.review-logo {
    height: 30px;
    vertical-align: middle;
}

/* Page headers */
.page-header {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
}
.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.page-header p {
    font-size: 1.2em;
    color: #555;
}

/* Services, About, Contact layout */
.services-list, .about-content, .contact-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    font-size: 1.1em;
}
.services-list ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-form button {
    padding: 12px;
    font-size: 1em;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact-form button:hover {
    background: #218838;
}

/* Gallery (FINAL VERSION) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }
    nav a {
        display: inline-block;
        margin: 5px 10px;
        font-size: 1em;
    }

    .hero {
        padding: 40px 20px;
    }
    .hero h1 {
        font-size: 1.8em;
        line-height: 1.3em;
    }
    .hero p {
        font-size: 1em;
    }
    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-header h1 {
        font-size: 1.6em;
    }

    footer {
        font-size: 0.9em;
        padding: 15px;
    }
}

@media (max-width: 600px) {
  .gallery-item img {
    height: auto;
    max-height: 300px;
  }
}