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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFF;
    background-color: #0B1215;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    text-align: center;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;    
}

header h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Main content */
main {
    flex: 1;
    padding: 0 20px;
}

section {
}

section h2 {
}

section p {
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: #777;
    border-top: 1px solid #e9ecef;
    margin-top: 40px;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 10px;
    }
}