:root {
    --primary: #10542c;
    --primary-dark: #0a3d20;
    --secondary: #b99331;
    --gold-light: #d4af37;
    --bg: #f7f8f9;
    --white: #ffffff;
    --text-dark: #111111;
    --text-light: #565959;
    --link-blue: #007185;
    --border-color: #d5d9d9;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text-dark);
    direction: rtl;
    line-height: 1.5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    margin-bottom: 25px;
}

header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

/* Grid Section */
.account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.account-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.account-card:hover {
    background-color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

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

.card-content h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Bottom Links Section */
.bottom-sections {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group {
    display: flex;
    flex-direction: column;
}

.link-group h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 8px;
}

.link-group ul li a {
    color: var(--link-blue);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.link-group ul li a:hover {
    color: #c45500;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .account-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
    .bottom-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
