@import url('https://fonts.googleapis.com/css2?family=Lalezar&display=swap');

        body {
            font-family: 'Lalezar', Arial, sans-serif;
            line-height: 1.8;
            margin: 0;
            padding: 0;
            background-color: #f4f7f6;
            color: #333;
            direction: rtl;
        }
        .container {
            max-width: 1000px;
            margin: 30px auto;
            padding: 20px;
            background-color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        .guide-button {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1em;
            margin-top: 10px;
            font-family: 'Lalezar', Arial, sans-serif;
            transition: background-color 0.3s ease;
            cursor: pointer;
        }
        .guide-button:hover {
            background-color: #45a049;
        }

        h1 {
            color: #e91e63;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.8em;
            border-bottom: 3px solid #fdd835;
            padding-bottom: 10px;
        }
        h2 {
            color: #3f51b5;
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 1.8em;
            border-bottom: 2px dashed #b0bec5;
            padding-bottom: 5px;
        }
        .features {
            background-color: #e8eaf6;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 1.1em;
        }
        .icon-container {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #3f51b5;
            color: white;
            border-radius: 50%;
            margin-left: 15px;
            font-size: 1.3em;
            flex-shrink: 0;
        }
       
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .price-table th, .price-table td {
            border: 1px solid #cfd8dc;
            padding: 15px;
            text-align: center;
            font-size: 1.1em;
        }
        .price-table th {
            background-color: #7986cb;
            color: white;
            font-weight: bold;
        }
        .price-table tr:nth-child(even) {
            background-color: #e8eaf6;
        }
        .price-table tr:hover {
            background-color: #c5cae9;
        }
        .price-table td:first-child {
            font-weight: 500;
            color: #303f9f;
        }
        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.9em;
            color: #777;
        }
        .cta-button {
            display: inline-block;
            background-color: #e91e63;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.2em;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #c2185b;
        }
        .header-section {
            text-align: center;
            margin-bottom: 40px;
        }
        .header-section img {
            max-width: 150px;
            margin-bottom: 20px;
            border-radius: 8px;
        }
        .main-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 30px auto;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }