body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    background-color: #fff;
}

/* Hero Section - Átlós vágott kép */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    /* Ez hozza létre a PDF-en látható átlós vágást az alján */
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-logo {
    position: absolute;
    top: 30px;
    right: 5%;
    width: 180px;
}

/* Szöveg elhelyezése a kép alatt/felett */
.hero-text-overlay {
    padding-left: 10%;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.energy-info {
    color: #21a55b;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.green-title-box {
    background-color: #21a55b;
    color: white;
    padding: 15px 40px;
    display: inline-block;
    /* Átlós vágás a zöld sáv jobb szélén */
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.green-title-box h1 { margin: 0; font-size: 32px; }
.green-title-box p { margin: 0; font-size: 14px; }

.website-url {
    color: #21a55b;
    margin-top: 10px;
    font-weight: bold;
}

/* Tartalom */
.content-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

h2 {
    color: #21a55b;
    border-bottom: 2px solid #21a55b;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Zöld blokk (Vantaggi) */
.benefits-block {
    background-color: #21a55b;
    color: white;
    margin: 40px -2000px; /* Kinyújtjuk a hátteret a szélekig */
    padding: 40px 2000px;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}

.benefits-block h2 { color: white; border-color: white; }

.list-wrapper {
    display: flex;
    justify-content: space-between;
}

.list-wrapper ul { list-style: "✓ "; padding-left: 20px; }
.list-wrapper li { margin-bottom: 8px; }

/* Specifikációk */
.specs-grid {
    display: flex;
    flex-direction: column;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Mobilra optimalizálás */
@media (max-width: 768px) {
    .hero-image-container { height: 300px; }
    .list-wrapper { flex-direction: column; }
    .green-title-box { min-width: 100%; padding: 15px 20px; }
}