:root {
    --color-primary: #14171C;
    --color-accent: #D1D5DB;
    --color-text: #333;
    --color-bg: #fff;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

.sbh-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    height: var(--header-height);
    background-color: var(--color-primary);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.sbh-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-accent);
}

.sbh-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/outside-800x600.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 0 20px;
}

.sbh-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sbh-section {
    padding: 60px 0;
}

footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0 20px;
}

.sbh-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.sbh-footer-col h3 {
    color: var(--color-accent);
    margin-bottom: 20px;
}

.sbh-footer-col ul {
    list-style: none;
}

.sbh-footer-col ul li {
    margin-bottom: 10px;
}

.sbh-footer-col a {
    color: #ccc;
    text-decoration: none;
}

.sbh-footer-col a:hover {
    color: #fff;
}

.sbh-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Utilities */
.sbh-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sbh-btn:hover {
    background-color: #fff;
}

/* Accordion */
.sbh-accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sbh-accordion-item {
    border-bottom: 1px solid #ddd;
}

.sbh-accordion-item:last-child {
    border-bottom: none;
}

.sbh-accordion-header {
    background-color: #f9f9f9;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sbh-accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
}

.sbh-accordion-item.active .sbh-accordion-content {
    display: block;
}

/* Helper classes */
.sbh-hidden {
    display: none;
}

/* Content Sections */
.sbh-content-section {
    padding: 80px 0;
}

.sbh-content-section.sbh-alt-bg {
    background-color: #f4f4f4;
}

.sbh-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sbh-content-grid.reverse .sbh-content-image {
    order: 2;
}

.sbh-content-grid.reverse .sbh-content-text {
    order: 1;
}

.sbh-content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sbh-content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.sbh-content-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .sbh-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sbh-content-grid.reverse .sbh-content-image {
        order: 1;
    }

    .sbh-content-grid.reverse .sbh-content-text {
        order: 2;
    }

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