/* Alap stílusok */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Felső sáv */
.top-bar{background-color:#589547;height:34px;display:flex;align-items:center;justify-content:center;width:100%;color:#fff}
.contact-info{display:flex;align-items:center;justify-content:center}
.info-item{display:flex;align-items:center;margin:0 10px}
.info-item i{margin-right:5px;color:#fff}
.top-bar a{color:#fff;text-decoration:none}
.top-bar a:hover{text-decoration:underline}

/* Navigáció */
.navigation{display:flex;justify-content:space-between;align-items:center;padding:15px;background-color:#8dc73f;position:relative}
.logo{display:flex;align-items:center;margin-left:100px}
.menu{text-align:right;margin-right:100px}

/* Főmenü */
.main-menu{display:flex;list-style:none;margin:0;padding:0}
.main-menu li{position:relative;margin:0 10px}
.main-menu a{text-decoration:none;color:#fff;padding:10px;display:block;font-weight:bold}
.main-menu a:hover{color:#f0f0f0}

/* Aktív menüpont kiemelés */
.main-menu a.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Lenyíló menü */
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    background-color:#589547;
    min-width:200px;
    border-radius:4px;
    box-shadow:0 5px 15px rgba(0,0,0,.2);
    padding:10px 0;
    z-index:100;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .3s ease
}
.dropdown-menu li{margin:0;display:block}
.dropdown-menu a{padding:8px 20px;color:#fff;font-weight:normal}
.dropdown-menu a:hover{background-color:#8dc73f;color:#fff}
.dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}

/* Hamburger menü */
.mobile-menu-toggle{
    display:none;
    background:transparent;
    border:none;
    cursor:pointer;
    padding:10px;
    z-index:1001;
    position:relative
}
.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after{
    display:block;
    width:30px;
    height:3px;
    background-color:#fff;
    position:relative;
    transition:all .3s ease
}
.hamburger-icon:before,
.hamburger-icon:after{
    content:"";
    position:absolute;
    left:0
}
.hamburger-icon:before{top:-8px}
.hamburger-icon:after{bottom:-8px}

/* Aktív állapot a hamburger menühöz */
.mobile-menu-toggle.active .hamburger-icon{
    background-color:transparent
}
.mobile-menu-toggle.active .hamburger-icon:before{
    top:0;
    transform:rotate(45deg)
}
.mobile-menu-toggle.active .hamburger-icon:after{
    bottom:0;
    transform:rotate(-45deg)
}

/* Konténer és képek */
.container{width:100%;max-width:100%;margin:0 auto}
.responsive-image{width:100%;height:auto;display:block}

/* Mobile Hero Section */
.mobile-hero {
    display: none; /* Hidden by default */
    width: 100%;
    max-width: 100%; /* Maximum szélesség korlátozás */
    background-color: #589547; /* Alap háttérszín */
    padding: 30px 0 60px; /* Oldalra nincs padding! */
    position: relative;
    overflow: hidden;
    box-sizing: border-box; /* Ez biztosítja, hogy a padding nem adódik hozzá a szélességhez */
}

/* A tartalom konténer megfelelő paddingot kap */
.mobile-hero-inner {
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
}

/* Kék háromszög megvalósítása egyszerű színes div-vel */
.mobile-hero-triangle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%; /* Teljes szélesség, hogy biztosan kitöltse a teret */
    height: 100%; /* Teljes magasság, hogy biztosan kitöltse a teret */
    background-color: #8dc73f;
    /* Egyszerű, megbízható clip-path a háromszög létrehozásához */
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 1;
}

.mobile-hero-content {
    position: relative;
    z-index: 2; /* Magasabb z-index, mint a háttér */
    color: #fff;
    width: 100%;
}

.mobile-hero-content h1 {
    margin: 0;
    padding: 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
}

.mobile-hero-content h1:nth-child(2) {
    color: #8dc73f;
}

.mobile-hero-content p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    text-align: left;
}
/* Szolgáltatások szekció */
.services-section{padding:50px 20px;background-color:#fff;text-align:center}
.section-title{color:#000;font-size:2.5rem;margin-bottom:40px;font-weight:700;position:relative;display:inline-block}
.section-title:after{content:"";display:block;width:60px;height:3px;background-color:#8dc73f;margin:10px auto 0}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;max-width:1200px;margin:0 auto}
.service-item{background-color:#f8f8f8;border-radius:8px;padding:20px;box-shadow:0 4px 6px rgba(0,0,0,.1);transition:transform .3s ease,box-shadow .3s ease}
.service-item:hover{transform:translateY(-10px);box-shadow:0 10px 15px rgba(0,0,0,.15)}
.service-item h2{color:#589547;font-size:1.5rem;margin-top:0;margin-bottom:15px}
.service-item img{width:100%;height:auto;border-radius:6px;margin-bottom:15px}
.service-item h3{color:#555;font-size:1rem;font-weight:400;margin:0}

/* Sötét hátterű blokk */
.dark-section{background-color:#fff;padding:0;overflow:hidden}
.help-section{display:flex;width:100%}
.help-image{flex:0 0 40%;max-width:40%;height:auto;overflow:hidden}
.help-image img{width:100%;height:100%;object-fit:cover;object-position:center}
.help-content{flex:1;padding:40px;background-color:#589547;color:#fff;display:flex;flex-direction:column;justify-content:center}
.help-content h2{font-size:2.5rem;margin-bottom:20px;color:#fff}
.help-content p{font-size:1.1rem;line-height:1.6;margin-bottom:30px}
.service-features{display:flex;flex-direction:column;gap:25px}
.feature{display:flex;align-items:flex-start;gap:15px}
.feature-icon{min-width:50px;height:50px;border-radius:50%;background-color:#8dc73f;display:flex;align-items:center;justify-content:center;font-size:1.5rem}
.feature-text h3{font-size:1.2rem;margin-bottom:5px;color:#8dc73f}
.feature-text p{font-size:1rem;margin-bottom:0;line-height:1.5}

/* Vélemények szekció */
.testimonials-section{background-color:#8dc73f;color:#fff;padding:60px 20px;text-align:center}
.testimonials-title{font-size:2.5rem;margin-bottom:50px;position:relative;display:inline-block}
.testimonials-title:after{content:"";display:block;width:60px;height:3px;background-color:#fff;margin:10px auto 0}
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;max-width:1200px;margin:0 auto}
.testimonial-item{background-color:rgba(255,255,255,.1);border-radius:10px;padding:30px;box-shadow:0 5px 15px rgba(0,0,0,.1);backdrop-filter:blur(5px);transition:transform .3s ease}
.testimonial-item:hover{transform:translateY(-10px)}
.testimonial-avatar{width:80px;height:80px;border-radius:50%;overflow:hidden;margin:0 auto 20px;border:3px solid #fff}
.testimonial-avatar img{width:100%;height:100%;object-fit:cover}
.testimonial-content p{font-style:italic;margin-bottom:15px;line-height:1.6}
.testimonial-author{font-size:1.1rem;margin-bottom:10px;font-weight:600}
.rating{color:#FFD700;margin-top:5px;font-size:1rem}

/* Térkép szekció */
.map-section{width:100%;padding:0}
.map-container{width:100%;height:450px;position:relative;overflow:hidden}
.map-container iframe{width:100%;height:100%;filter:grayscale(100%)}
.map-container-full {
    width: 100%;
    height: 450px;
    overflow: hidden;
}
.map-container-full iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(70%);
    transition: filter 0.3s ease;
}
.map-container-full iframe:hover {
    filter: grayscale(0%);
}

/* Footer szekció */
.footer-section{background-color:#000;color:#777;padding:40px 0 20px}
.footer-container{max-width:1200px;margin:0 auto;padding:0 20px}
.footer-columns{display:flex;flex-wrap:wrap;justify-content:space-between;margin-bottom:30px}
.footer-column{flex:1;min-width:200px;margin-bottom:30px;padding-right:20px}
.footer-column h3{color:#fff;font-size:1rem;margin-bottom:20px;position:relative;padding-bottom:10px}
.footer-column h3::after{content:"";position:absolute;left:0;bottom:0;width:40px;height:2px;background-color:#8dc73f}
.footer-column ul{list-style:none;padding:0;margin:0}
.footer-column ul li{margin-bottom:10px}
.footer-column ul li a{color:#777;text-decoration:none;transition:color .3s ease}
.footer-column ul li a:hover{color:#8dc73f}
.payment-methods{margin-top:15px}
.payment-logo{max-width:180px;margin-bottom:15px}
.card-icons{display:flex;gap:10px}
.card-icons img{height:30px;width:auto}
.footer-bottom{padding-top:20px;border-top:1px solid #333;text-align:center;font-size:.9rem}
/* Mobil visszagörgető gomb */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgba(88, 149, 71, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    z-index: 990;
    cursor: pointer;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    outline: none;
}

.back-to-top.visible {
    opacity: 0.7;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    background-color: rgba(88, 149, 71, 1);
    opacity: 1;
}

.back-to-top i {
    font-size: 20px;
    line-height: 50px;
}

/* Mobil hívás gomb */
.mobile-call-button {
    display: none;
    position: fixed;
    bottom: 80px; /* Move higher up from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Ensure proper centering */
    width: 50px;
    height: 50px;
    background-color: rgba(141, 199, 63, 0.8);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    z-index: 990;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow for better visibility */
}

.mobile-call-button:hover {
    background-color: rgba(141, 199, 63, 1);
    transform: translateX(-50%) scale(1.1); /* Slight scale effect on hover */
}

.mobile-call-button i {
    font-size: 24px; /* Slightly larger icon */
    line-height: 50px;
}

/* Make sure it doesn't conflict with "Back to top" button */
@media (max-width: 992px) {
    .mobile-call-button {
        display: block;
    }
    
    /* Ensure the "Back to top" button stays in its corner */
    .back-to-top {
        right: 20px;
        bottom: 20px;
        transform: none;
    }
}

/* ===== ÁLTALÁNOS OLDALFEJLÉCEK ===== */
/* Oldal fejléc szekció - közös stílus a Rólunk, Kapcsolat és Szolgáltatás oldalakon */
.about-header, .contact-header, .service-header {
    position: relative;
    background-color: #589547;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-header::after, .contact-header::after, .service-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, #8dc73f 50%);
    z-index: 1;
}

.about-header-content, .contact-header-content, .service-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header h1, .contact-header h1, .service-header h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-header p, .contact-header p, .service-header p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

/* ===== RÓLUNK OLDAL STÍLUSOK ===== */
/* Cég története szekció */
.about-section {
    padding: 80px 20px;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}
/* Értékeink szekció */
.values-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: #8dc73f;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #589547;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Miért válasszon minket szekció */
.why-us-section {
    padding: 80px 20px;
    background-color: #589547;
    color: #fff;
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-content h2 {
    font-size: 2.5rem;
    margin: 0 0 40px;
    text-align: center;
    position: relative;
}

.why-us-content h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8dc73f;
    margin: 20px auto 0;
}

.why-us-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-us-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
    line-height: 1.5;
}

.why-us-list i {
    color: #8dc73f;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Csapatunk szekció */
.team-section {
    padding: 80px 20px;
    background-color: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 0 0 5px;
    color: #589547;
}

.member-position {
    color: #8dc73f;
    font-weight: 600;
    margin: 0 0 15px;
}

.member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}
/* ===== KAPCSOLAT OLDAL STÍLUSOK ===== */
/* Kapcsolat információk és űrlap szekció */
.contact-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Bal oldali oszlop - Kapcsolati információk */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-card h2 {
    font-size: 1.8rem;
    margin: 0 0 30px;
    color: #589547;
    position: relative;
}

.contact-info-card h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: #8dc73f;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #8dc73f;
    margin-right: 20px;
    min-width: 40px;
    height: 40px;
    background-color: rgba(141, 199, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    color: #589547;
}

.contact-text p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

.contact-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #8dc73f;
}

.social-media-links {
    background-color: #589547;
    border-radius: 8px;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.social-media-links h3 {
    margin: 0 0 20px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #8dc73f;
    transform: translateY(-5px);
}

/* Jobb oldali oszlop - Kapcsolatfelvételi űrlap */
.contact-form-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form-card h2 {
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: #589547;
}

.contact-form-card p {
    margin: 0 0 30px;
    color: #555;
}
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8dc73f;
    outline: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff4c4c;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.checkbox-group a {
    color: #8dc73f;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    margin-top: 30px;
}

/* Megközelíthetőség szekció */
.directions-section {
    padding: 80px 20px;
    background-color: #fff;
}

.directions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.direction-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.direction-item:hover {
    transform: translateY(-10px);
}

.direction-icon {
    font-size: 2.5rem;
    color: #8dc73f;
    margin-bottom: 20px;
}

.direction-item h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #589547;
}

.direction-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* ===== LAPTOP SZERVIZ OLDAL STÍLUSOK ===== */
/* Bevezető szekció */
.intro-section {
    padding: 80px 20px;
    background-color: #fff;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h2 {
    font-size: 2rem;
    color: #589547;
    margin: 0 0 20px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.highlight-text {
    background-color: rgba(141, 199, 63, 0.1);
    border-left: 4px solid #8dc73f;
    padding: 15px;
    font-weight: 600;
    color: #589547;
}
.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.brand-item {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    border-radius: 4px;
    padding: 10px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.brand-item img {
    max-width: 100%;
    height: auto;
}

.intro-image {
    flex: 0 0 45%;
    min-width: 300px;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Laptop szolgáltatások szekció */
.laptop-services-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.laptop-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.laptop-service-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease;
}

.laptop-service-box:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: #8dc73f;
    margin-right: 20px;
    flex-shrink: 0;
    min-width: 70px;
    height: 70px;
    background-color: rgba(141, 199, 63, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #589547;
}

.service-content ul {
    margin: 0;
    padding-left: 20px;
}

.service-content li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #555;
}
/* Lépésenkénti folyamat szekció */
.process-section {
    padding: 80px 20px;
    background-color: #fff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin: -20px 0 40px;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50px;
    left: 23px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: #8dc73f;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #8dc73f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    text-align: left;
    padding: 0 0 0 30px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin: 0 0 10px;
    color: #589547;
}

.step-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Gyakori problémák szekció */
.common-issues-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.issues-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.issue-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-10px);
}

.issue-icon {
    font-size: 2.5rem;
    color: #8dc73f;
    margin-bottom: 20px;
}

.issue-card h3 {
    font-size: 1.3rem;
    margin: 0 0 15px;
    color: #589547;
}

.issue-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}
/* Árak szekció */
.pricing-section {
    padding: 80px 20px;
    background-color: #fff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-table {
    margin-top: 40px;
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e5e5;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.pricing-table th {
    background-color: #589547;
    color: #fff;
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

.pricing-table tr:hover {
    background-color: rgba(141, 199, 63, 0.1);
}

.pricing-note {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(141, 199, 63, 0.1);
    border-radius: 8px;
    text-align: left;
}

.pricing-note p {
    margin: 10px 0;
    color: #555;
}

/* Háztól-házig emlékeztető sáv */
.reminder-banner {
    background-color: #589547;
    color: #fff;
    padding: 30px 20px;
}

.reminder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.reminder-icon {
    font-size: 3rem;
    color: #8dc73f;
    flex-shrink: 0;
}

.reminder-text {
    flex: 1;
}

.reminder-text h3 {
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.reminder-text p {
    margin: 0;
    opacity: 0.9;
}

.reminder-button {
    flex-shrink: 0;
}

.call-button {
    display: inline-block;
    background-color: #8dc73f;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button i {
    margin-right: 10px;
}

.call-button:hover {
    background-color: #fff;
    color: #589547;
    transform: translateY(-3px);
}

/* Laptop vélemények módosítás */
.laptop-testimonials {
    margin-top: 0;
    background-color: #8dc73f;
}
/* FAQ szekció */
.faq-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(141, 199, 63, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #589547;
}

.faq-question i {
    color: #8dc73f;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.faq-item.active .faq-question {
    background-color: rgba(141, 199, 63, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* ===== KÖZÖS COMPONENSEK ===== */

/* Háztól-házig szolgáltatás emlékeztető */
.reminder-section {
    padding: 60px 20px;
    background-color: #8dc73f;
    color: #fff;
}

.reminder-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.reminder-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.reminder-text h2 {
    font-size: 2rem;
    margin: 0 0 15px;
}

.reminder-text p {
    font-size: 1.1rem;
    margin: 0 0 20px;
    opacity: 0.9;
}

.reminder-button {
    display: inline-block;
    background-color: #589547;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reminder-button:hover {
    background-color: #fff;
    color: #589547;
    transform: translateY(-3px);
}
/* CTA szekció - közös stílus minden oldalra */
.cta-section {
    padding: 60px 20px;
    background-color: #589547;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin: 0 0 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin: 0 0 30px;
    opacity: 0.9;
}

/* Különböző típusú gombok a CTA szekcióban */
.cta-button {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button i {
    margin-right: 10px;
}

/* Alap CTA gomb - ha nincsenek további osztályok */
.cta-button:not(.primary):not(.secondary) {
    background-color: #8dc73f;
    color: #fff;
}

.cta-button:not(.primary):not(.secondary):hover {
    background-color: #fff;
    color: #589547;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Elsődleges és másodlagos gombok a laptop szerviz oldalon */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background-color: #8dc73f;
    color: #fff;
}

.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.primary:hover, 
.cta-button.secondary:hover {
    background-color: #fff;
    color: #589547;
    transform: translateY(-3px);
}

/* Beküldő gombok */
.submit-button {
    background-color: #8dc73f;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.submit-button i {
    margin-right: 10px;
}

.submit-button:hover {
    background-color: #589547;
    transform: translateY(-3px);
}
/* ===== RESZPONZÍV BEÁLLÍTÁSOK ===== */
/* Általános responsive beállítások */
@media (max-width:992px){
    .services-grid,.testimonials-grid{grid-template-columns:repeat(2,1fr)}
    .service-item h2{font-size:1.3rem}
    .help-section{flex-direction:column}
    .help-image{max-width:100%}
    .navigation{padding:15px}
    .logo{margin-left:20px}
    .menu{margin-right:20px}
    .footer-columns{justify-content:flex-start}
    .footer-column{flex:0 0 50%}
    
    /* Mobil gombok megjelenítése */
    .back-to-top,
    .mobile-call-button {
        display: block;
    }
    
    .mobile-menu-toggle{display:block}
	.menu{
        position:fixed;
        top:0;
        right:-100%;
        width:100%;
        height:100vh;
        background-color:#589547;
        transition:right .3s ease;
        margin:0;
        padding:60px 0 20px;
        overflow-y:auto;
        z-index:1000;
        box-shadow:none;
        text-align:center;
    }
    .menu.active{right:0}
    
    .main-menu{
        flex-direction:column;
        align-items:center;
        width:100%
    }
    .main-menu li{
        width:100%;
        margin:0;
        border-bottom:1px solid rgba(255,255,255,.1)
    }
    .main-menu a{
        padding:15px 25px;
        width:100%;
        box-sizing:border-box;
        text-align:center;
        font-size:1.1rem;
    }
    
    .dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        background-color:#448437;
        border-radius:0;
        padding:0;
        max-height:0;
        overflow:hidden;
        transition:max-height .3s ease;
        width:100%;
        text-align:center;
    }
    .dropdown.active .dropdown-menu{
        max-height:500px;
        padding:10px 0;
    }
    
    .dropdown-menu li{
        border-bottom:none;
    }
    
    .dropdown-menu a{
        padding:12px 25px;
        font-size:1rem;
        color:#8dc73f;
    }
    
    /* Backdrop a mobilmenühöz */
    .menu-backdrop{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:100%;
        background-color:rgba(0,0,0,.5);
        z-index:999;
        opacity:0;
        visibility:hidden;
        transition:all .3s ease
    }
    .menu-backdrop.active{
        opacity:1;
        visibility:visible
    }
    
    /* Almenü nyíl ikonok */
    .dropdown > a:after{
        content:'▼';
        display:inline-block;
        margin-left:8px;
        font-size:10px;
        transition:transform .3s ease;
    }
    .dropdown.active > a:after{
        transform:rotate(180deg);
    }
    
    /* Rólunk és Kapcsolat oldal stílusok */
    .about-story {
        flex-direction: column;
    }
    
    .values-grid,
    .directions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Laptop Szerviz reszponzív */
    .laptop-services-grid {
        grid-template-columns: 1fr;
    }
    
    .issues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reminder-container {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width:768px){
    .testimonials-grid{grid-template-columns:1fr}
    .testimonials-title{font-size:2rem}
    .map-container{height:350px}
    
    /* Hide regular hero image on mobile */
    .container .responsive-image[src="hero.webp"] {
        display: none;
    }
    
    /* Show mobile hero instead */
    .mobile-hero {
        display: block;
    }
    
    /* Javítás a vélemények szekcióhoz mobilon */
    .testimonial-item {
        margin-bottom: 20px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    /* Header stílusok */
    .about-header h1,
    .contact-header h1,
    .service-header h1 {
        font-size: 2.5rem;
    }
    
    .about-header p,
    .contact-header p,
    .service-header p {
        font-size: 1rem;
    }
    
    /* Rólunk stílusok */
    .why-us-list {
        grid-template-columns: 1fr;
    }
    
    /* Kapcsolat stílusok */
    .reminder-content {
        flex-direction: column;
        text-align: center;
    }
    
    /* CTA stílusok */
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    /* Laptop szerviz stílusok */
    .intro-content {
        flex-direction: column;
    }
    
    .intro-image {
        order: -1;
    }
    
    .issues-grid {
        grid-template-columns: 1fr;
    }
    
    /* Javított CTA gombok mobilra */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        max-width: 100%; /* Biztosítjuk, hogy a konténer ne legyen szélesebb, mint az oldal */
    }
    
    .cta-button {
        width: auto; /* Auto helyett a szélesség */
        max-width: 90%; /* Maximum a képernyő 90%-a */
        text-align: center;
        box-sizing: border-box; /* Padding beleszámít a szélességbe */
        margin: 5px 0;
    }
}
@media (max-width:576px){
    .services-grid{grid-template-columns:1fr}
    .section-title{font-size:2rem}
    .top-bar{height:auto;padding:10px 0}
    .contact-info{flex-direction:column;gap:5px}
    .help-content h2{font-size:1.8rem}
    .feature-icon{min-width:40px;height:40px;font-size:1.2rem}
    .footer-column{flex:0 0 100%}
    
    /* Adjusted text size for smaller screens */
    .mobile-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .mobile-hero-content p {
        font-size: 0.9rem;
    }
    
    /* Rólunk és Kapcsolat stílusok */
    .values-grid,
    .directions-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }
    
    /* Laptop szerviz stílusok */
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    /* Még kisebb képernyőkre további korlátozások */
    .cta-content {
        padding: 0 10px; /* Biztosítsunk padding-et a tartalom konténernek */
    }
    
    .cta-button {
        padding-left: 15px; /* Csökkentett padding kisebb képernyőkön */
        padding-right: 15px;
        font-size: 1rem; /* Kissé kisebb betűméret */
    }
}
/* Blog oldal stílusai */

/* Blog header szekció */
.blog-header {
    position: relative;
    background-color: #589547;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 50%, #8dc73f 50%);
    z-index: 1;
}

.blog-header-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-header h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 700;
}

.blog-header p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

/* Blog bejegyzések szekció */
.blog-posts-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h2 {
    font-size: 1.5rem;
    margin: 0 0 15px;
    line-height: 1.3;
}

.blog-content h2 a {
    color: #589547;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: #8dc73f;
}
.blog-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px;
    /* Maximal 3 lines and then truncate with ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.read-more {
    display: inline-block;
    color: #8dc73f;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #589547;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog oldal reszponzív beállítások */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .blog-header p {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
	.service-header h1 {
        font-size: 2rem !important; /* Fontos a !important, hogy felülírja az alap stílust */
    }
	.section-title, 
    .testimonials-title {
        font-size: 1.8rem !important; /* Kisebb betűméret tableteken */
    }
	.laptop-services-grid {
        grid-template-columns: 1fr !important; /* Egyoszlopos elrendezés */
        max-width: 100%; /* Maximális szélesség korlátozása */
    }
    
    /* Szolgáltatás doboz padding csökkentése */
    .laptop-service-box {
        padding: 20px 15px; /* Kisebb padding mobilon */
    }
    
    /* Lista elemek betűméretének csökkentése */
    .service-content ul li {
        font-size: 0.95rem; /* Kissé kisebb betűméret */
    }
}

@media (max-width: 576px) {
    .blog-content h2 {
        font-size: 1.3rem;
    }
	.service-header h1 {
        font-size: 1.5rem !important; /* Még kisebb képernyőkön még kisebb méret */
    }
	.section-title, 
    .testimonials-title {
        font-size: 1.5rem !important; /* Még kisebb betűméret telefonokon */
    }
}

/* Blog bejegyzés oldal stílusai */

/* Blog bejegyzés tartalom szekció */
.blog-post-section {
    padding: 60px 0 80px;
    background-color: #f8f8f8;
}

.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Kiemelt kép */
.blog-post-hero {
    margin: -60px -20px 40px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.blog-post-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Címek */
.blog-post-title {
    font-size: 2.5rem;
    color: #589547;
    margin: 0 0 30px;
    line-height: 1.2;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: #589547;
    margin: 40px 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.blog-post-content h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #8dc73f;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    color: #589547;
    margin: 30px 0 15px;
}

.blog-post-content h4 {
    font-size: 1.2rem;
    color: #589547;
    margin: 25px 0 10px;
}

/* Szöveg stílusok */
.blog-post-content {
    color: #444;
    line-height: 1.7;
    font-size: 1.1rem;
}

.blog-post-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    border-left: 4px solid #8dc73f;
    padding-left: 20px;
    margin-bottom: 30px;
}

.lake {
    fill: #46b449;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.logo a {
    display: inline-block;
    line-height: 0; /* Eltávolítja a felesleges teret a kép körül */
}

.logo img {
    max-width: 360px;
    height: auto;
    width: 100%; /* Biztosítja a reszponzív viselkedést */
    transition: all 0.3s ease; /* Simább átmenet különböző képernyőméretek között */
}
/* Reszponzív beállítások */
@media (max-width: 992px) {
    .logo {
        margin-left: 20px;
    }
    
    .logo img {
        max-width: 240px; /* Köztes méret nagyobb tabletekhez */
    }
}

@media (max-width: 768px) {
    .logo img {
        max-width: 180px; /* Kisebb tabletekhez és nagyobb telefonokhoz */
    }
}

@media (max-width: 576px) {
    .logo img {
        max-width: 150px; /* Kifejezetten mobilnézethez */
    }
}

/* Extra kis képernyőkre */
@media (max-width: 380px) {
    .logo img {
        max-width: 120px; /* Nagyon kicsi kijelzőkre */
    }
}
.about-header h1, .contact-header h1, .service-header h1 {
    font-size: 3.5rem;
    margin: 0 0 20px;
    font-weight: 700;
    text-transform: uppercase; /* Ez fogja megfelelően nagybetűssé alakítani */
}

/* Info és figyelmeztető dobozok */
.info-box,
.warning-box {
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-box {
    background-color: rgba(141, 199, 63, 0.1);
    border-left: 4px solid #8dc73f;
}

.warning-box {
    background-color: rgba(255, 76, 76, 0.1);
    border-left: 4px solid #ff4c4c;
}

.info-box h4,
.warning-box h4 {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
    color: #589547;
}

.info-box i,
.warning-box i {
    margin-right: 10px;
}

.info-box p,
.warning-box p {
    margin: 0;
}

/* Teljesítmény összehasonlító rész */
.performance-comparison {
    margin: 30px 0;
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.comparison-item {
    margin-bottom: 15px;
}

.comparison-item h4 {
    margin: 0 0 5px;
}

.comparison-bar {
    position: relative;
    height: 40px;
    margin-bottom: 15px;
}

.bar {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    text-align: right;
}

.bar.hdd {
    background-color: #ff4c4c;
    margin-bottom: 5px;
}

.bar.ssd {
    background-color: #8dc73f;
}

.sticky-service-button {
    position: fixed;
    right: 30px;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    z-index: 999;
    background-color: #25d366; /* zöld alap */
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    animation: attention-bounce 3s ease-in-out infinite, pulse-glow 2s infinite;
}

.sticky-service-button:hover {
    padding-right: 30px;
    background-color: #128C7E;
}

.sticky-service-button i {
    margin-right: 8px;
    font-size: 18px;
    transform: rotate(90deg);
}

@keyframes attention-bounce {
    0%, 100% {
        transform: translateY(-50%) rotate(-90deg);
    }
    85% {
        transform: translateY(-50%) rotate(-90deg);
    }
    90% {
        transform: translateY(-60%) rotate(-90deg);
    }
    95% {
        transform: translateY(-45%) rotate(-90deg);
    }
}

/* Pulzáló hatás a gombra */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    }
}

/* Mobilnézetre adaptáljuk, vízszintesen alul helyezzük el */
@media (max-width: 768px) {
    .sticky-service-button {
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: none;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 14px;
        animation: pulse-glow 2s infinite;
    }
    
    .sticky-service-button i {
        transform: none;
    }
}