/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* Header */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 48px;
    font-weight: 300; /* Light weight for premium feel */
    margin-bottom: 20px;
    color: #333333;
}

.lead {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

strong {
    font-weight: 600;
    color: #333333;
}

/* Video Placeholder */
.video-container {
    margin: 40px auto;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    background-color: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.video-placeholder {
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
}

.cta-section p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #333333;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
    border-top: 1px solid #eee;
}
