body {
    margin: 0;
    background-color: #ffffff;
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

/* الحاوية الرئيسية */
.main-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* العنوان الرئيسي */
.main-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1e00c9;
    text-align: center;
}

/* أقسام الأدوات */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tool-card {
    background-color: #f0fbfc;
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s;
    border: 1.5px solid #ccc;
}

.tool-card:hover {
    transform: translateY(-6px);
}

.tool-card h3 {
    color: #1e00c9;
    margin-bottom: 10px;
    font-size: 20px;
}

.tool-card p {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
}

/* أزرار */
.tool-card a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background-color: #1e00c9;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.tool-card a:hover {
    background-color: #15009f;
}
