:root {
    --primary-color: #E76300;
    --secondary-color: #ffffff;
    --text-color: #333333;
    --heading-color: #000000;
    --bg-light: #f9f9f9;
    --accent-color: #E76300;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary-color);
}

header {
    background: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 8px 5%;
    /* Reduced from 15px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 40px 20px;
}

/* Hero Image/Video Container */
/* New Hero Layout */
.hero-wrapper {
    background: #51429d;
    color: white;
    padding: 40px 5%;
}

.hero-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.hero-left {
    flex: 1;
    min-width: 300px;
}

.hero-left img {
    max-height: 430px;
    /* Increased by ~30px as requested (was 400 before padding adjustment) */
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.hero-right {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.hero-highlights {
    list-style: none;
}

.hero-highlights li {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.hero-highlights li::before {
    content: '✅';
    margin-right: 12px;
    font-size: 22px;
}

.highlight-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #ffd700;
    /* Gold for prominence */
    font-weight: 700;
}

/* Highlight price was removed */

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
}

.video-container iframe,
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}

.video-placeholder:hover {
    background: #333;
}

/* Inquiry Form */
.sticky-form-container {
    width: 350px;
    position: sticky;
    top: 100px;
    /* Below header */
    margin-left: 20px;
    z-index: 900;
}

.inquiry-form {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inquiry-form h3 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 22px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
}

.disclaimer {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 15px;
    opacity: 0.9;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--heading-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: #333;
}

/* Page Layout for About/Index with Form */
.page-cols {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /* Important for sticky */
    gap: 30px;
}

.main-column {
    flex: 2;
    /* Occupies more space */
    min-width: 300px;
}

/* Sidebar Specifics */
.sidebar {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
    /* Adjust based on header height */
    z-index: 100;
}

.inquiry-form {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background: #f1f1f1;
    padding: 40px 5% 20px;
    margin-top: 50px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .sticky-form-container {
        position: static;
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .hero {
        flex-direction: column-reverse;
    }
}