.hero-section {
    background-color: #F1F2F7;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 20px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.price-tag {
    background: #00a4b2;
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.features-grid {
    background-color: #F1F2F7;
    padding: 20px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 20px;
}

.feature-card {
    cursor: pointer;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.dashboard-preview {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin: 50px 20px;
    text-align: center;
}

.dashboard-preview img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.guarantee-badge {
    background-color: white;
    background: #ffffff; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.cta-section {
    background-color: #F1F2F7;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 50px 20px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card .price {
    font-size: 56px;
    font-weight: bold;
    color: #667eea;
    margin: 20px 0;
}

.pricing-card .period {
    color: #666;
    font-size: 18px;
}

.telegram-btn {
    background: #0088cc;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    text-decoration: none;
}

.telegram-btn:hover {
    background: #0077b5;
}

.comparison-table {
    overflow-x: auto;
    margin: 50px 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

th {
    background: #00a4b2;
    color: white;
    padding: 20px;
    text-align: left;
}

td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

tr:hover {
    background: #f9f9f9;
}

.check-icon {
    color: #4CAF50;
    font-weight: bold;
}

.x-icon {
    color: #f44336;
    font-weight: bold;
}

.cardRandom{
    background-color: #F1F2F7;
}


@media (max-width: 768px) {
    .features-grid{
        flex-wrap: wrap;
        justify-content: center;
        margin: 0px;
    }
}