body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('bg.png') center/cover no-repeat;
    overflow: hidden;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.info-panel {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 8px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.impact-list li::before {
    content: "-";
    position: absolute;
    left: 0;
}

.text-muted {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.footer div {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}