html {
    scroll-behavior: smooth;
}

:root {
    --primary-green: #008000;
    /* Original title color */
    --accent-green: #32cd32;
    --accent-red: #cc0000;
    /* Original subtitle color */
    --bg-pale: #ffff99;
    /* Original main background color */
    --header-bg: #ccff99;
    /* Original header background color */
    --primary-yellow: #f6e500;
    /* Brand yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-dark: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.8;
    /* Megnövelt sormagasság a szellősebb megjelenésért */
    color: var(--text-dark);
    background-color: var(--bg-pale);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    /* Megnövelt szekció távolság */
}

.bg-light {
    background-color: var(--bg-light);
}

/* Components */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    max-width: 200px;
    /* Alapértelmezett szélesség */
}

.logo img {
    height: 50px;
    /* Megfelelő magasság a navigációs sávhoz */
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
    /* Enyhe hover effekt */
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    /* Több hely a kép és a szöveg között */
    padding-top: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--primary-green);
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.hero-btns {
    margin: 3.5rem 0;
    /* Több hely a gombok körül */
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.hero-btns-top {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(10px 10px 30px rgba(0, 128, 0, 0.2));
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-feature-item::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: 800;
    font-size: 1.2rem;
}

.hero-meta {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid rgba(0, 128, 0, 0.1);
    padding-top: 1.5rem;
    line-height: 1.6;
}

.hero-meta span {
    display: block;
}

/* Responsive */
@media (max-width: 968px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Availability Section Styles */
#hol-kaphato {
    margin-top: 8rem;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-content: center;
}

.availability-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 128, 0, 0.1);
    transition: var(--transition);
}

.availability-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0, 128, 0, 0.1);
}

.availability-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.availability-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* New Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    /* Több hely a cím és a tartalom között */
    color: var(--primary-green);
    font-size: 2.8rem;
    letter-spacing: -0.02em;
    scroll-margin-top: 100px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    /* Nagyobb távolság a kártyák között */
}

.product-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    /* Megnövelt belső padding */
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--header-bg);
    transition: var(--transition);
}

.product-card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.download-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-green);
}

.download-card:hover {
    background: var(--primary-green);
    color: var(--white);
}

.bg-dark-green {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 6rem 0;
    margin-top: 9rem;
    /* Még több hely a termékektől */
}

.bg-dark-green .section-title {
    color: var(--white);
    /* Fehér cím a zöld háttéren */
}

#dokumentumok {
    margin-top: 8rem;
    /* Jelentős távolság a zöld szekció után */
}

#kapcsolat {
    margin-top: 8rem;
    /* Távolság a dokumentumok szekció után */
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.btn-secondary {
    background-color: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-tertiary {
    background-color: var(--accent-red);
    color: var(--white);
    border: 2px solid var(--accent-red);
}

.btn-tertiary:hover {
    background-color: #990000;
    border-color: #990000;
    transform: translateY(-2px);
}

/* Usage Section Refinements */
.usage-content p {
    margin-bottom: 2.5rem;
    /* Egy teljes sornyi hely a bekezdések között */
    line-height: 1.8;
}

.usage-note,
.usage-warning,
.usage-alert {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin: 2.5rem 0;
    border-left: 4px solid var(--accent-red);
}

.usage-alert {
    background: rgba(204, 0, 0, 0.1);
    font-size: 1.125rem;
    text-align: center;
}



.usage-download-container {
    margin-top: 4rem;
    text-align: center;
}

.usage-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.8rem;
    background-color: var(--white);
    color: var(--primary-green);
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.usage-download-btn:hover {
    background-color: var(--header-bg);
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Contact Section Styles */
.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 128, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 1.1rem;
    margin: 0;
}

.contact-card .role {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-green);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--accent-red);
}

/* Footer Styles */
footer {
    text-align: center;
    margin: 6rem 0 4rem 0;
    /* Több margin felül, kevesebb alul */
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 128, 0, 0.1);
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateY(-2px);
}