* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

body {
    min-height: 100vh;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("solar-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    background: #ffffff;
    width: 90%;
    max-width: 650px;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    color: #f9a602;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.1rem;
    color: #4a7c2c;
    margin-bottom: 25px;
}

.divider {
    width: 70px;
    height: 4px;
    background: #f9a602;
    margin: 0 auto 25px auto;
    border-radius: 2px;
}

h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 25px;
}

.info-box {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.info-box p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

footer {
    font-size: 0.85rem;
    color: #888;
}

@media (max-width: 768px) {
    .page {
        flex-direction: column;
    }

    .left, .right {
        width: 100%;
    }

    .right {
        height: 220px;
    }
}

