.elementor-95 .elementor-element.elementor-element-2e1daf1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* ریست و تنظیمات اولیه */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tahoma', 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
    direction: rtl;
    text-align: right;
}

/* کانتینر اصلی */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* تنظیمات عناوین */
h1 {
    font-size: 2.5em;
    color: #1a73e8;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #1a73e8;
    text-align: center;
}

h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-right: 15px;
    border-right: 5px solid #1a73e8;
}

h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
}

/* پاراگراف‌ها */
p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.1em;
}

/* لینک‌ها */
a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d47a1;
    text-decoration: underline;
}

/* تصاویر */
.responsive-img {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* لیست‌ها */
ul {
    margin: 20px 0;
    padding-right: 30px;
}

ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
}

ul li::before {
    content: "✓";
    color: #1a73e8;
    font-weight: bold;
    position: absolute;
    right: -25px;
}

/* جدول قیمت‌ها */
.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.price-table thead {
    background-color: #1a73e8;
    color: white;
}

.price-table th,
.price-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table tbody tr:hover {
    background-color: #e3f2fd;
    transition: background-color 0.3s ease;
}

/* بخش سوالات متداول */
.faq-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #1a73e8;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.faq-answer p {
    margin: 0;
    padding-right: 15px;
    border-right: 3px solid #1a73e8;
}

/* بخش تماس */
.contact-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin: 10px 0;
}

.contact-list li::before {
    content: "📞";
    margin-left: 10px;
}

.contact-list a {
    color: white;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
}

.contact-list a:hover {
    color: #ffeb3b;
}

/* استایل‌های strong */
strong {
    color: #1a73e8;
    font-weight: bold;
}

/* واکنش‌گرایی */
@media screen and (max-width: 768px) {
    .container {
        padding: 15px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.3em;
    }

    p {
        font-size: 1em;
    }

    .price-table th,
    .price-table td {
        padding: 10px;
        font-size: 0.9em;
    }

    .contact-list a {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.3em;
    }

    .price-table th,
    .price-table td {
        padding: 8px;
        font-size: 0.85em;
    }
}/* End custom CSS */