@font-face {
    font-family: 'Diodrum Arabic';
    src: url('../fonto/DiodrumArabic-Regular.ttf') format('truetype');
    font-weight: 400; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Arabic';
    src: url('../fonto/DiodrumArabic-Medium.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Diodrum Arabic';
    src: url('../fonto/DiodrumArabic-Bold.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
}

body {
    direction: rtl;
    background-color: #F5F5F5;
    font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 400; /* Regular */
    margin: 0;
    display: flex;
    flex-direction: column; /* هدر و محتوا زیر هم */
    align-items: stretch;  /* عناصر عرض کامل */
    padding: 0 0 40px 0; /* بالای صفحه بدون فاصله برای چسبیدن هدر */
}

.campaign-container {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* مرکز قرار دادن کانتینر */
    padding: 40px;
    border: 1px solid #E0E0E0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: right;
}

.new-stuff {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: right;
    color: #555555;
    font-size: 15px;
}

.bold {
    font-weight: bold;
}

.new-h2 {
        font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 22px;
    color: #74459F;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #74459F;
    display: inline-block;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

header h1 {
    font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 700; /* Bold */
  font-size: 32px;
    color: #74459F;
    margin: 0 0 10px 0;
}

header p {
    font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 500; /* Medium */
  font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 5px 0;
}

.header-image {
  text-align: right;
    margin-bottom: 40px;
}

.header-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 22px;
    color: #74459F;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #74459F;
    display: inline-block;
}

.conditions ul {
    list-style: none;
    padding: 0;
    margin: 0; /* align with image */
}

.conditions li {
    margin-bottom: 25px;
    padding: 0; /* remove indent */
}

.conditions li strong {
    font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 18px;
    color: #333;
    display: block;
    margin-bottom: 8px;
    /* remove padding-right if any */
}

.conditions li p {
    font-size: 15px;
    color: #555;
    margin: 0 0 5px 0;
    position: static; /* remove relative positioning */
}

.conditions li p::before {
    content: none; /* remove dash */
}

.why-us > p {
  font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.feature {
    margin-top: 20px;
}

.feature h3 {
    font-family: 'Diodrum Arabic', sans-serif;
    font-weight: 700; /* Bold */
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.feature p {
  font-size: 15px;
    color: #555;
    margin: 0;
}

/* Purple boxed table */
.purple-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.purple-table th,
.purple-table td {
    background: #E8D8F5;
    padding: 12px 8px;
  text-align: center;
    border: 1px solid #d7c7ec;
    font-size: 15px;
}
.purple-table th {
    font-weight: 700;
}

/* contact form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.form-row label {
    flex: 1 1 240px;
    display: flex;
    flex-direction: column;
  font-size: 14px;
    color: #333;
}
.form-row input {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Diodrum Arabic', sans-serif;
}
.contact-form button {
    background: #74459F;
  color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Diodrum Arabic', sans-serif;
}
.contact-form button:hover {
    background: #5e3582;
}

/* Captcha styling */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.captcha-question {
    background: #E8D8F5;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #d7c7ec;
    font-weight: 500;
    color: #74459F;
    font-size: 14px;
    min-width: 80px;
    text-align: center;
}

.captcha-container input {
    flex: 1;
    min-width: 120px;
}
