/* Reset and base styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
}

:root {
    --primary-color: #0B2533;
    --accent-color: #0088CB;
    --background-color: #FFFFFF;
    --text-color: #0B2533;
    --nav-height: 60px;
    --container-width: 1200px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navigation */
.main-nav {
    position: sticky;
    top: 0;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

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

.nav-list li {
    margin: 0;
    padding: 0;
}

.nav-list li:before {
    display: none;
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

/* Layout */
.page-content {
    min-height: calc(100vh - var(--nav-height));
    width: 100%;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    height: 400px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: var(--primary-color);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    background: rgba(11, 37, 51, 0.8);
    color: white;
    padding: 0;
    height: 120px;
    display: flex;
    align-items: center;
}

.hero-text p {
    margin-left: 25px;
    /* max-width: 800px; */
    line-height: 1.5;
}

/* Content Section */
.text-content {
    /* no margins here - they should be inline */
}

.text-content h2.font_2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.25rem;
}

/* List Styles */
.text-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.text-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.2rem;
    line-height: 1.4em;
}

.text-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.text-content p[style*="margin-left: 25px"] {
    position: relative;
    padding-left: 25px;
    margin-left: 0 !important;
    line-height: 1.4em;
    margin-bottom: 0.2rem;
}

.text-content p[style*="margin-left: 25px"]::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-color);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-link:hover {
    text-decoration: underline;
    color: inherit;
}

.contact-link:active,
.contact-link:focus {
    color: inherit;
    outline: none;
}

.non-selectable {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Grid Layout */
.image-grid {
    max-width: var(--container-width);
    margin: 2rem auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--background-color);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-list.active {
        display: flex;
    }

    .hero-section {
        height: 300px;
    }

    .text-content {
        width: auto !important;
        max-width: 100% !important;
        padding-right: 15px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1rem auto;
        padding: 0 15px;
    }

    .image-container {
        max-width: 100%;
        aspect-ratio: 16/9;
    }

    .grid-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
} 