/* Alap stílusok és Reset */
:root {
    --primary-color: #007bff; /* Kék - Tetszés szerint módosítható */
    --secondary-color: #4CAF50; /* Zöld - Tetszés szerint módosítható */
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif; /* Egyszerű, olvasható betűtípus */
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    overflow: hidden; /* Clearfix helyett */
}

/* Fejléc */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.2rem;
}

header h1 .highlight {
    color: var(--secondary-color); /* Vagy egy másik kiemelő szín */
}

header .subtitle {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Hero Szekció */
#hero {
    background: var(--light-gray);
    padding: 3rem 0;
    text-align: center;
}

#hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

#hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
}

.product-image { /* Ha használsz képet */
    max-width: 80%;
    height: auto;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* Jellemzők Szekció */
#features {
    padding: 3rem 0;
    background: #fff;
}

#features h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reszponzív rács */
    gap: 2rem;
    text-align: center;
}

.feature-item {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px); /* Kis emelkedés hoverre */
}

.feature-icon {
    width: 50px; /* Ikon mérete */
    height: 50px;
    margin-bottom: 1rem;
    /* Ha SVG-t használsz, itt lehet színt is állítani: */
    /* fill: var(--primary-color); */
    opacity: 0.8;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}


/* Feliratkozás Szekció */
#signup {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

#signup h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#signup p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
}

#interest-form {
    max-width: 500px;
    margin: 1rem auto 0 auto;
    display: flex; /* E-mail és gomb egy sorba */
    flex-wrap: wrap; /* Tördelés kisebb képernyőn */
    justify-content: center;
    gap: 0.5rem;
}

#interest-form input[type="email"] {
    flex-grow: 1; /* Kitölti a rendelkezésre álló helyet */
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 250px; /* Minimum szélesség */
}

#interest-form button[type="submit"] {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#interest-form button[type="submit"]:hover {
    background-color: #3a8f3e; /* Kicsit sötétebb zöld hoverre */
}

.form-message { /* Üzeneteknek (JS-sel) */
    margin-top: 1rem;
    font-weight: bold;
}

.privacy-note {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* Lábléc */
footer {
    background: var(--dark-gray);
    color: #ccc;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Segédosztályok */
.sr-only { /* Képernyőolvasóknak szánt, de vizuálisan rejtett elemek */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* Reszponzivitás (Egyszerű példa) */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    #hero h2 {
        font-size: 1.8rem;
    }
    .feature-grid {
        grid-template-columns: 1fr; /* Mobilon egy oszlop */
    }
    #interest-form {
        flex-direction: column; /* Mobilon egymás alá kerül az input és a gomb */
        align-items: stretch; /* Kitöltik a rendelkezésre álló szélességet */
    }
    #interest-form input[type="email"],
    #interest-form button[type="submit"] {
        width: 100%;
    }
}