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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.header {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-display-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.header-title-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-title-text a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

.header-nav-list {
    display: flex;
    gap: 1.5rem;
}

.header-nav-item a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn--border {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

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

.header-burger {
    display: none;
}

.burger-inner div {
    height: 1px;
    background: #000;
    margin: 4px 0;
    width: 24px;
}

.visually-hidden {
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

.main-content {
    margin-top: 80px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

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

.floating-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: left;
    width: 90%;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.text-color-custom {
    color: #9D9292;
}

.sqs-html-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 300;
    margin: 0;
}

.large-text {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0;
}

.large-text a {
    color: #9D9292;
    text-decoration: none;
    border-bottom: 1px solid #9D9292;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.large-text a:hover {
    color: #666;
    border-bottom-color: #666;
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .header-burger {
        display: block;
    }
    
    .header-actions {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        display: block;
        width: 90%;
        max-width: 300px;
        text-align: center;
    }
    
    .header-actions .btn {
        width: 100%;
        background-color: #000;
        color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .header-actions .btn:hover {
        background-color: #333;
    }
    
    .sqs-html-content h1 {
        font-size: 2.5rem;
    }
    
    .floating-content {
        width: 95%;
        padding: 1rem;
    }
}
