/* CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2d5016;
    --sage-green: #6b8e4e;
    --mint-green: #a4be7b;
    --light-sage: #c8dbb2;
    --pale-green: #e8f5e8;
    --gray-dark: #3a3a3a;
    --gray-medium: #6c757d;
    --gray-light: #e9ecef;
    --gray-ultra-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.05);
    --error-red: #e74c3c;
}

/* Typography */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background-color: var(--sage-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(107, 142, 78, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--forest-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 142, 78, 0.4);
}

/* Mobil eszközökön kikapcsoljuk a hover animációt, hogy elkerüljük a remegést */
@media (max-width: 768px) {
    .btn-primary:hover {
        transform: none;
        box-shadow: 0 5px 15px rgba(107, 142, 78, 0.3);
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

.btn-secondary {
    background-color: transparent;
    color: var(--sage-green);
    padding: 1rem 2rem;
    border: 2px solid var(--sage-green);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--sage-green);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--sage-green);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Mobile Phone Icon */
.mobile-phone-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 999;
    display: none;
}

.mobile-phone-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--sage-green);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.mobile-phone-icon a:hover {
    transform: scale(1.1);
    background-color: var(--forest-green);
}

.phone-icon {
    font-size: 24px;
    color: var(--white);
}

@media (max-width: 768px) {
    .mobile-phone-icon {
        display: flex;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--forest-green);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-accept, .cookie-settings {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--mint-green);
    color: var(--forest-green);
}

.cookie-accept:hover {
    background-color: var(--white);
}

.cookie-settings {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-settings:hover {
    background-color: var(--white);
    color: var(--forest-green);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    height: 80px;
}

/* Logó méret javítása */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem; /* Csökkentettük 1.75rem-ről 1.5rem-re */
    font-weight: 700;
    color: var(--forest-green);
    text-decoration: none;
    letter-spacing: -0.5px;
}
/* Mobilnézet esetén még kisebb logó */
@media (max-width: 768px) {
    .logo {
        font-size: 1.25rem; /* Mobilon még kisebb méret */
    }
}

/* Nagyon kis képernyőkön még kisebb */
@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-medium);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--sage-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--sage-green);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: var(--sage-green);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    background-color: var(--forest-green);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: none;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--forest-green);
    margin: 3px 0;
    transition: 0.3s;
    display: block;
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 2rem 0;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Értesítés stílusok - Új hozzáadott rész */
.notification-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 450px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    padding: 15px;
    transform: translateX(120%);
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 9999;
    opacity: 0;
}

.notification-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-popup.closing {
    transform: translateX(120%);
    opacity: 0;
}

.notification-popup.success {
    border-left: 5px solid var(--sage-green);
}

.notification-popup.error {
    border-left: 5px solid var(--error-red);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.notification-popup.success .notification-icon {
    background-color: var(--mint-green);
    color: var(--forest-green);
}

.notification-popup.error .notification-icon {
    background-color: #fadbd8;
    color: var(--error-red);
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--gray-dark);
}

.notification-message {
    color: var(--gray-medium);
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    font-size: 20px;
    color: var(--gray-medium);
    cursor: pointer;
    padding: 5px;
    margin: -5px;
    transition: color 0.2s;
}

.notification-close:hover {
    color: var(--gray-dark);
}

@media (max-width: 768px) {
    .notification-popup {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
        width: calc(100% - 20px);
    }
}

/* A régi form üzenet stílusok, visszafele kompatibilitáshoz */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.3s;
}

.form-message.fade-out {
    opacity: 0;
}

.form-message.success {
    background-color: var(--pale-green);
    color: var(--forest-green);
    border-left: 4px solid var(--sage-green);
}

.form-message.error {
    background-color: #fadbd8;
    color: var(--error-red);
    border-left: 4px solid var(--error-red);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--white) 100%);
    overflow: hidden;
    min-height: 700px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--sage-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-dark);
}

.checkmark {
    color: var(--mint-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Service Area Notice módosítása a hero szekcióban */
.service-area-notice {
    background-color: rgba(107, 142, 78, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--sage-green);
    margin-top: 2rem;
    text-align: center;
}

.service-area-notice p {
    margin: 0;
    color: var(--gray-dark);
}

.service-area-notice small {
    color: var(--gray-medium);
}

.hero-image {
    position: relative;
}

.hero-image picture img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.hero-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    box-shadow: var(--shadow-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--sage-green);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image picture img {
        height: 400px;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: var(--gray-ultra-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* About Section - Javított verzió a mobilnézet és credentials megjelenítésének javítására */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--pale-green) 100%);
    overflow: hidden; /* Biztosítja, hogy a tartalom nem lóg ki a szekció határain */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    top: 0;
    max-width: 100%;
}

.about-image > img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 0 auto 2rem;
    display: block;
}

/* Átdolgozott credentials rész - fix grid elrendezés */
.about-credentials {
    background-color: var(--white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 500px;
}

.about-credentials h4 {
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Grid elrendezés a görgetés helyett */
.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--gray-ultra-light);
    border-radius: 10px;
    transition: all 0.3s;
}

.credential-item:hover {
    background-color: var(--pale-green);
    transform: translateY(-5px);
}

.credential-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.credential-item h5 {
    color: var(--forest-green);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.credential-item p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Eredeti scrollozós verzió támogatása is (visszafelé kompatibilitás) */
.credentials-scroll-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.credentials-scroll {
    display: flex;
    gap: 1rem;
    animation: scroll-horizontal 20s linear infinite;
    padding: 1rem 0;
}

@keyframes scroll-horizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.credentials-scroll:hover {
    animation-play-state: paused;
}

/* Javított mobil nézet a bemutatkozás szekcióhoz */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        position: static;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .about-image > img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .credential-icon {
        font-size: 1.2rem;
    }
    
    .credential-item h5 {
        font-size: 0.9rem;
    }
    
    .credential-item p {
        font-size: 0.8rem;
    }
}

/* Video Gallery */
.video-gallery {
    padding: 100px 0;
    background-color: var(--sage-green);
}

.video-gallery .section-header h2 {
    color: var(--white);
}

.video-gallery .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-placeholder {
    width: 100%;
    height: 200px;
    background-color: var(--gray-dark);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sage-green);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-item h4 {
    padding: 1.5rem;
    color: var(--forest-green);
    margin: 0;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background-color: var(--gray-ultra-light);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-light);
    background-color: var(--white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--gray-medium);
}

.tab-button.active {
    background-color: var(--sage-green);
    color: var(--white);
    border-color: var(--sage-green);
}

.tab-button:hover {
    border-color: var(--sage-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--white);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.before-after-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 300px;
}

.before-image, .after-image {
    position: relative;
    overflow: hidden;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-image::after {
    content: 'ELŐTTE';
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.after-image::after {
    content: 'UTÁNA';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(107, 142, 78, 0.9);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .before-after-container {
        height: 250px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Fix for mobile gallery */
@media (max-width: 480px) {
    .before-after-container {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .before-image, .after-image {
        height: 200px;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-sage) 100%);
}

.pricing-note {
    color: var(--gray-medium);
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--sage-green);
    background-color: transparent;
    color: var(--sage-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.pricing-tab.active {
    background-color: var(--sage-green);
    color: var(--white);
}

.pricing-tab:hover {
    background-color: var(--sage-green);
    color: var(--white);
}

.pricing-content {
    max-width: 800px;
    margin: 0 auto;
}

.price-list {
    display: none;
    background-color: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.price-list.active {
    display: block;
}

.price-list h3 {
    color: var(--forest-green);
    margin-bottom: 2rem;
    text-align: center;
}

.price-table {
    margin-bottom: 2rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-desc {
    color: var(--gray-dark);
    font-weight: 500;
}

.price-value {
    color: var(--sage-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.tusko-info {
    background-color: var(--gray-ultra-light);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.tusko-info h4 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.tusko-measurement {
    width: 320px;
    height: 480px;
    margin: 1rem auto;
    overflow: hidden;
    border-radius: 10px;
}

.tusko-measurement img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.pricing-footer ul {
    list-style: none;
    margin-top: 1rem;
}

.pricing-footer li {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.pricing-footer .mt-3 {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .price-list {
        padding: 1.5rem;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 0;
    }
    
    .price-value {
        margin-top: 0.5rem;
    }
}

/* Process Section - Horizontal Layout */
.process {
    padding: 100px 0;
    background-color: var(--pale-green);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 4rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-green) 0%, var(--forest-green) 100%);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 3px solid var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: bold;
    font-size: 1.75rem;
    color: var(--sage-green);
    position: relative;
}

.step-content {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.step-content h3 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--gray-medium);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Testimonials - Grid Layout */
.testimonials {
    padding: 100px 0;
    background-color: var(--gray-ultra-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--gray-light);
    padding-top: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--forest-green);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: 0.25rem;
}

.author-location {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--white) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-medium);
    flex-wrap: wrap;
}

.blog-category {
    color: var(--sage-green);
    font-weight: 600;
}

.blog-content h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--sage-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--gray-ultra-light);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-light);
}

.faq-item.active {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--forest-green);
    transition: all 0.3s;
}

.faq-question:hover {
    background-color: var(--pale-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--sage-green);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--gray-dark);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .cta-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--gray-ultra-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info,
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info h3,
.contact-form h3 {
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: var(--pale-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green);
    flex-shrink: 0;
    font-size: 1.2rem;
}

.info-text strong {
    display: block;
    color: var(--forest-green);
    margin-bottom: 0.25rem;
}

.info-text {
    color: var(--gray-dark);
}

/* Hívás gomb stílusa a kapcsolat szekcióban */
.call-button {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.call-now-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.call-now-btn span {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.call-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 142, 78, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(107, 142, 78, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(107, 142, 78, 0);
    }
}

.contact-form form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: inherit;
    transition: all 0.3s;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Formák és hibaüzenetek */
.error-message {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 5px;
    margin-left: 5px;
    font-weight: 500;
}

.error-field {
    border-color: var(--error-red) !important;
}

.error-field:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

/* File input styling */
.file-input {
    display: none;
}

.file-input-label {
    display: block;
    padding: 1.5rem;
    border: 2px dashed var(--sage-green);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--gray-ultra-light);
}

.file-input-label:hover {
    background-color: var(--pale-green);
    border-color: var(--forest-green);
}

.file-input-label span {
    color: var(--gray-dark);
    font-size: 1rem;
}

.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 1rem;
}

.file-preview-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--gray-light);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-item .remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--forest-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.form-submit {
    width: 100%;
    margin-top: auto;
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem;
}

/* Form submission loading state */
.form-submit.loading {
    position: relative;
    color: transparent;
}

.form-submit.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-info, 
    .contact-form {
        padding: 1.5rem;
    }
    
    .call-now-btn {
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .call-now-btn span {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    background-color: var(--forest-green);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--mint-green);
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section ul {
    opacity: 0.9;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--mint-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--mint-green);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Scroll to top button - Javított változat */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sage-green), var(--forest-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    animation: pulse 2s infinite;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Loading state for images */
img {
    opacity: 1;
    transition: opacity 0.3s;
}

img.loading {
    opacity: 0;
}

/* Print styles */
@media print {
    header, footer, .cta-section, .contact-form, .scroll-top, .mobile-phone-icon, .notification-popup {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section-padding {
        padding: 20px 0;
    }
}

/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-container {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    cursor: default;
}

.lightbox-container .before-after-container {
    height: 80vh;
    width: 80vw;
    max-width: 1200px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

/* Mobile Menu Enhancements */
@media (max-width: 768px) {
    /* Improve mobile menu */
    .mobile-menu-toggle {
        z-index: 1002;
        position: relative;
    }

    /* When menu is active, change hamburger to X */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Prevent body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Make sure menu takes full height */
    .nav-menu {
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Optimalizált térköz a menüpontok között */
    .nav-menu li {
        margin: 0.8rem 0;
    }

    /* Make the CTA button full width on mobile */
    .nav-menu .nav-cta {
        width: 80%;
        text-align: center;
        padding: 1rem;
    }
    
    /* Ensure mobile phone icon doesn't overlap with scroll-to-top */
    .scroll-top {
        right: 30px;
        bottom: 30px;
    }
    
    .mobile-phone-icon {
        left: 20px;
        bottom: 30px;
    }
}

/* Additional Responsive Fixes */
@media (max-width: 480px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        transform: none !important; /* Kikapcsoljuk a transzformációt kis képernyőkön */
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .price-list {
        padding: 1.5rem;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-value {
        margin-top: 0.5rem;
    }
    
    .notification-popup {
        font-size: 14px;
        padding: 12px;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        margin-right: 10px;
    }
    
    .notification-title {
        font-size: 15px;
    }
    
    .notification-message {
        font-size: 13px;
    }
    
    .notification-close {
        font-size: 18px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for page load */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.3s ease-in forwards;
}

/* Keyframes for animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply fadeInUp animation to all fade-in elements when they become visible */
.fade-in.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* Process Step Animation */
@keyframes processStepFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step.animate-in {
    animation: processStepFadeIn 0.6s ease forwards;
    animation-fill-mode: both;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--forest-green);
    outline-offset: 2px;
}

/* Fix for Scroll Top */
.scroll-top:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 10px 25px rgba(0,0,0,0.4);
}

/* Image Error Fallback */
img.error {
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 0.8rem;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

/* Cookie Banner Animation */
.cookie-consent {
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

/* Blog 2x2 Grid stílus */
.blog-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Blog posztok egységes magassága */
.blog-grid-2x2 .blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-grid-2x2 .blog-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-grid-2x2 .blog-content p {
    flex-grow: 1;
}

.blog-grid-2x2 .read-more {
    margin-top: auto;
}

/* Reszponzív megjelenés mobilon */
@media (max-width: 768px) {
    .blog-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Animáció a blogposztokhoz */
.blog-grid-2x2 .blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-grid-2x2 .blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-grid-2x2 .blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-grid-2x2 .blog-card:nth-child(4) { animation-delay: 0.4s; }

/* How-To Section Styles */
.howto {
    padding: 100px 0;
    background-color: var(--pale-green);
    position: relative;
    overflow: hidden;
}

.howto:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('images/bg-pattern-light.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.howto .container {
    position: relative;
    z-index: 2;
}

.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 3rem;
}

.howto-step {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.howto-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.howto-step h3 {
    background-color: var(--sage-green);
    color: var(--white);
    padding: 1.2rem 1.5rem;
    margin: 0;
    font-size: 1.3rem;
    position: relative;
}

.howto-step h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background-color: var(--sage-green);
}

.howto-content {
    padding: 2rem;
    color: var(--gray-dark);
}

.howto-content p {
    margin-bottom: 1rem;
}

.howto-content ul,
.howto-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.howto-content li {
    margin-bottom: 0.7rem;
    position: relative;
}

.howto-content ol li {
    padding-left: 0.5rem;
}

.howto-content ul li {
    list-style-type: none;
    padding-left: 1.5rem;
}

.howto-content ul li:before {
    content: '✓';
    color: var(--sage-green);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

.howto-content strong {
    color: var(--forest-green);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .howto {
        padding: 60px 0;
    }
    
    .howto-step h3 {
        font-size: 1.1rem;
        padding: 1rem 1.2rem;
    }
    
    .howto-content {
        padding: 1.5rem;
    }
}

/* Animation for howto steps */
.howto-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.howto-step.visible {
    opacity: 1;
    transform: translateY(0);
}