:root {
    --evo-dark-bg: #12151f;
    --evo-yellow: #ffc82c;
    --evo-white: #ffffff;
    --evo-gray-light: #f5f5f5;
    --evo-gray: #e0e0e0;
    --evo-blue1: #0a84a3;
    --evo-blue2: #086e8a;
    --evo-blue3: #05546a;
    --evo-blue4: #033d4d;
}

.evo-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--evo-dark-bg);
    color: var(--evo-white);
}

.evo-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.evo-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.evo-section-header {
    color: var(--evo-white);
    font-size: 42px;
    font-weight: bold;
    margin: 10px 0;
}

.evo-pricing-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.evo-pricing-sidebar {
    width: 20%;
    padding-top: 162px;
}

.evo-sidebar-title {
    color: var(--evo-blue1);
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.evo-pricing-table {
    width: 80%;
    border-collapse: collapse;
    table-layout: fixed;
}

.evo-pricing-header {
    background: linear-gradient(to right, var(--evo-blue1), var(--evo-blue2), var(--evo-blue3), var(--evo-blue4));
}

.evo-pricing-header th {
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--evo-white);
    width: 20%;
}

.evo-price-row td {
    text-align: center;
    padding: 30px 10px;
    font-size: 36px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.05);
}

.evo-price-note {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 5px;
    color: #aaa;
}

.evo-toggle-content {
    text-align: center;
    margin: 20px 0;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.evo-toggle-content:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.evo-toggle-content span {
    display: inline-block;
    color: var(--evo-white);
    font-weight: bold;
    margin-right: 5px;
}

.evo-toggle-content .evo-arrow {
    display: inline-block;
    transition: transform 0.4s ease;
}

.evo-toggle-content.evo-active .evo-arrow {
    transform: rotate(180deg);
}

.evo-content-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    display: block;
}

.evo-content-table.evo-show {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
}

.evo-content-table tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.05);
}

.evo-content-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.evo-content-table td:first-child {
    font-weight: bold;
    width: 30%;
}

.evo-icon-check, .evo-icon-x {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.evo-icon-check {
    background-color: #0a84a3;
    color: white;
}

.evo-icon-x {
    background-color: #0a84a3;
    color: white;
    opacity: 0.5;
}

.evo-buttons-row {
    display: grid;
    grid-template-columns: 20% repeat(4, 1fr);
    margin-top: 20px;
    gap: 15px;
    width: 100%;
}

.evo-buttons-spacer {
    grid-column: 1;
}

.evo-btn {
    display: inline-block;
    padding: 12px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0;
    border: 2px solid;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.evo-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.evo-btn:hover:before {
    width: 100%;
}

.evo-btn:active {
    transform: translateY(3px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) inset;
}

.evo-btn-outline {
    background-color: transparent;
    border-color: #0a84a3;
    color: white;
}

.evo-btn-outline:hover {
    box-shadow: 0 0 10px rgba(10, 132, 163, 0.5);
}

.evo-btn-primary {
    background-color: #0a84a3;
    border-color: #0a84a3;
    color: white;
}

.evo-btn-primary:hover {
    background-color: #086e8a;
    box-shadow: 0 0 15px rgba(10, 132, 163, 0.7);
}

.evo-popular-badge {
    position: absolute;
    right: -50px;
    top: -20px;
    background-color: transparent;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(15deg);
    z-index: 1;
}

.badge{
    width: 90px;
}

.evo-price-column {
    position: relative;
}

.evo-price-column-wrapper {
    position: relative;
    display: inline-block;
}

.evo-section-subtitle {
    margin-top: 7rem;
    text-align: center;
    color: var(--evo-yellow);
    font-size: 24px;
    margin-bottom: 10px;
}

.evo-sidebar-title {
    display: flex;
    align-items: center; 
  }
  
  .webadwise-logo {
    width: 100px;
    height: auto; 
    margin-right: 20px; 
    z-index: 0;
  }


/* Mobilos nézet optimalizálása */
@media (max-width: 768px) {
    .evo-pricing-container {
        flex-direction: column;
    }
    
    .evo-pricing-sidebar {
        width: 100%;
        padding-top: 0;
        margin-bottom: 20px;
    }
    
    .evo-pricing-table {
        width: 100%;
    }
    
    .evo-buttons-row {
        grid-template-columns: 1fr;
    }
    
    .evo-buttons-spacer {
        display: none;
    }
    
    .evo-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    /* Mobilos megjelenítéshez */
    .evo-mobile-package {
        background-color: white;
        color: #333;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .evo-mobile-package-header {
        padding: 20px;
        background-color: white;
    }
    
    .evo-mobile-package-title {
        color: #333;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .evo-mobile-package-price {
        color: #0a84a3;
        font-size: 36px;
        font-weight: bold;
        text-align: center;
    }
    
    .evo-mobile-price-suffix {
        font-size: 20px;
    }
    
    .evo-mobile-price-note {
        display: block;
        font-size: 14px;
        color: #777;
        text-align: center;
    }
    
    .evo-mobile-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: white;
        border-top: 1px solid #eee;
        color: #333;
        font-weight: bold;
        cursor: pointer;
    }
    
    .evo-mobile-toggle .evo-arrow {
        transition: transform 0.3s ease;
    }
    
    .evo-mobile-toggle.active .evo-arrow {
        transform: rotate(180deg);
    }
    
    .evo-mobile-features {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background-color: white;
        color: #333;
    }
    
    .evo-mobile-features.active {
        max-height: 1000px;
    }
    
    .evo-mobile-feature-item {
        display: flex;
        padding: 10px 20px;
        border-bottom: 1px solid #eee;
        align-items: center;
    }
    
    .evo-mobile-feature-icon {
        width: 24px;
        height: 24px;
        background-color: #0a84a3;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .evo-mobile-feature-icon.inactive {
        opacity: 0.5;
    }
    
    .evo-mobile-feature-text {
        flex-grow: 1;
    }
    
    .evo-mobile-btn {
        background-color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: center;
    }
    
    .evo-mobile-action-btn {
        background-color: #0a84a3;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 12px 20px;
        font-weight: bold;
        width: 100%;
        text-transform: uppercase;
        text-align: center;
        text-decoration: none;
    }
    
    .evo-mobile-premium-badge {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 60px;
        height: 60px;
    }
    
    .evo-mobile-pricing-container {
        display: none;
    }
    
    .evo-mobile-package-container {
        display: none;
    }
    
    /* Mobilos nézetnél elrejtjük az asztali tartalmat és megjelenítjük a mobil verziót */
    @media (max-width: 768px) {
        .evo-pricing-container,
        .evo-pricing-table,
        .evo-toggle-content,
        .evo-content-table,
        .evo-buttons-row {
            display: none;
        }
        
        .evo-mobile-pricing-container {
            display: block;
        }
        
        .evo-mobile-package-container {
            display: block;
            position: relative;
        }
    }
}

/* PC-s nézetnél elrejtjük a mobil nézet elemeit */
@media (min-width: 769px) {
    .evo-mobile-pricing-container,
    .evo-mobile-package-container {
        display: none;
    }
}
