:root {
    --iq-blue: #1a3c5a;      /* أزرق صناعي رصين */
    --iq-gold: #c5a059;      /* ذهبي عراقي عريق */
    --iq-light-bg: #f8f9fa;
    --iq-white: #ffffff;
    --iq-text: #333333;
}

body {
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--iq-light-bg);
    color: var(--iq-text);
    margin: 0;
}

/* الهيدر الموحد */
.main-header {
    background: linear-gradient(135deg, var(--iq-blue) 0%, #2c3e50 100%);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-bottom: 3px solid var(--iq-gold);
}

.logo-area h1 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* الحاويات */
.content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* البطاقات الحديثة */
.iq-card {
    background: var(--iq-white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.iq-card:hover {
    transform: translateY(-5px);
}

/* الأزرار */
.iq-btn {
    background-color: var(--iq-gold);
    color: var(--iq-blue);
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.iq-btn-primary {
    background-color: var(--iq-blue);
    color: white;
}