        :root {
            --primary-color: #E35205;
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-gray: #e9ecef;
            --white: #fff;
        }

        body {
            color: var(--text-color);
            background-color: var(--secondary-color);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .period-selector {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            background-color: var(--white);
            padding: 10px;
            border-radius: 50px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .period-btn {
            padding: 10px 20px;
            border: none;
            background: none;
            cursor: pointer;
            font-weight: bold;
            color: var(--text-color);
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .period-btn.active {
            background-color: var(--primary-color);
            color: white;
        }

        .plans-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .plan-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
        }

        .plan-card:hover {
            transform: translateY(-10px);
        }

        .plan-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .plan-price {
            font-size: 36px;
            font-weight: bold;
            margin: 20px 0;
        }

        .plan-period {
            font-size: 14px;
            color: #666;
        }

        .plan-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            text-align: left;
        }

        .plan-features li {
            padding: 8px 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .plan-features li:last-child {
            border-bottom: none;
        }

        .subscribe-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .subscribe-btn:hover {
            background-color: #c44904;
        }

        .users-selector {
            margin-top: 20px;
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: 1px solid var(--light-gray);
        }

        .highlight {
            border: 2px solid var(--primary-color);
        }

        .free-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background-color: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 14px;
        }