﻿:root {
    --primary-color: #0070f3;
    --secondary-color: #00c7b7;
    --accent-color: #ff4081;
    --background-color: #f0f4f8;
    --text-color: #333;
    --card-bg: #ffffff;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    scroll-behavior: smooth;
}

.section {
    /* General section styling can be added here if needed */
}

.tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

    h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--accent-color);
    }

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
}

.card {
    border: none;
    border-radius: 15px;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    background-color: var(--card-bg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 24px;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.image-container {
    background: linear-gradient(90deg, #007bff 0%, #00bfa6 100%) ;
    border-radius:10px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 0;
}

    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
    }

.process-section {
    background-color: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step {
    position: relative;
    padding: 30px;
    text-align: center;
}

    .process-step::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 2px;
        background-color: var(--primary-color);
        transform: translateY(-50%);
    }

    .process-step:last-child::after {
        display: none;
    }

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.subscription-section {
    margin-top: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 60px 40px;
}

.subscription-button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1em;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease;
    display: block;
    margin: 30px auto 0;
    text-align: center;
    max-width: 200px;
}

    .subscription-button:hover {
        background-color: var(--accent-color);
        color: white;
        transform: scale(1.05);
    }

.feature-list {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

    .feature-list li {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        transition: background-color var(--transition-speed) ease;
    }

        .feature-list li:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .feature-list li::before {
            content: "✓";
            margin-right: 10px;
            font-weight: bold;
        }

@media (max-width: 768px) {
    .process-step::after {
        display: none;
    }
}
