:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --text: #333;
    --text-light: #7f8c8d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f5f7;
    color: var(--text);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Landing Layout */
.landing {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* Header */
.landing-header {
    text-align: center;
    margin-bottom: 50px;
}

.landing-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.landing-header h1 span {
    color: var(--secondary);
    font-weight: 400;
}

.landing-header p {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    width: 100%;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e8e8e8;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary);
}

.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-name-ar {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    direction: rtl;
    margin-bottom: 6px;
    line-height: 1.5;
}

.card-name-en {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.card-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
.landing-footer {
    margin-top: 50px;
    text-align: center;
}

.landing-footer p {
    font-size: 13px;
    color: var(--text-light);
}

.landing-footer a {
    color: var(--secondary);
}

.landing-footer a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .landing-header h1 {
        font-size: 32px;
    }

    .card-img {
        height: 160px;
    }
}