/* Basic Setup */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
.site-header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
    border-bottom: 3px solid #007bff;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .logo a {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}
.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.main-nav li {
    margin-left: 25px;
}
.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-image: url('../images/hero-background.png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
    background-color: #333; /* Fallback */
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 22px;
    margin-bottom: 30px;
}
.btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
.btn:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}
.page-content h1, .page-content h2 {
    color: #1a1a1a;
    margin-bottom: 20px;
}
.page-content p {
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card-content {
    padding: 25px;
}
.service-card h3 {
    margin-top: 0;
    color: #007bff;
}

/* About Page */
.founder-story, .culture {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.values-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.values-list li {
    font-weight: bold;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 5px;
}

/* Contact Form */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
}
.contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.contact-form button {
    align-self: flex-start;
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
}
.footer-links a {
    color: #aaa;
    margin: 0 10px;
}
.footer-links {
    margin-bottom: 15px;
}