* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    direction: rtl;
}

.page-container {
    max-width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* الهيدر */
header {
    background: linear-gradient(135deg, #083e2c 0%, #0c0e17 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    height: 80px;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* المحتوى الرئيسي */
main {
    flex: 1;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* معلومات الشركة */
.company-info {
    margin-bottom: 50px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #083e2c;
    width: 30px;
    text-align: center;
}

/* قسم واتساب */
.whatsapp-section {
    text-align: center;
    margin: 30px 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.8rem;
}

/* الفوتر */
footer {
    background-color: #0c0e17;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: auto;
}

/* التجاوب مع الشاشات */
@media (max-width: 768px) {
    header {
        padding: 30px 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .info-item {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        padding: 14px 25px;
        font-size: 1.1rem;
    }
}
