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

body {
    font-family: 'Monda', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f2f2f0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Header - Off-white background */
.logo-header {
    background: #f2f2f0;
    padding: 1.5rem 0;
    text-align: center;
}

.logo-header .logo {
    display: inline-block;
}

.logo-header .logo img {
    height: 60px;
}

/* Header Bar - Pattern only */
.header-bar {
    background: url('images/header_bar.jpg') repeat-x;
    height: 40px;
    width: 100%;
}

/* Hero Section - Share Without Limits - Off-white with black text */
.hero {
    padding: 4rem 0;
    text-align: center;
    background: #f2f2f0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #333;
    line-height: 1.8;
}

/* Value Proposition - Mountains background with white floating box */
.value-prop {
    padding: 4rem 0;
    background: url('images/mountains.jpg') no-repeat center center;
    background-size: cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-prop-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
}

.value-prop-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 700;
}

.value-prop-box p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

/* Welcome Section - Off-white background with white text */
.welcome {
    padding: 4rem 0;
    text-align: center;
    background: #000859;
}

.welcome h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
}

.welcome p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
}

/* Password Protected Section */
.password-protected {
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.password-box {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(85, 132, 189, 0.1);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.password-box h2 {
    margin-bottom: 1rem;
    color: #5584bd;
}

.password-box p {
    margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #f2f2f0;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #5584bd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(0, 8, 89, 0.5);
    color: #f2f2f0;
}

.form-group input:focus {
    outline: none;
    border-color: #f2f2f0;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #5584bd;
    color: #f2f2f0;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #4574ad;
}

/* Footer */
footer {
    background: #000859;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

.social-links {
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    header .logo h1 {
        font-size: 1.5rem;
    }
}
