/* Define Brand Color */
:root {
    --brand-color: #30c6c5;
    --text-color: #333;
    --light-text-color: #666;
    --background-color: #f8f9fa; /* Very light grey background */
    --container-background: #ffffff; /* White container background */
}

/* Basic Reset and Font */
body {
    margin: 0;
    padding: 0;
    font-family: 'Cairo', sans-serif; /* Clean Arabic font */
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.7;
    direction: rtl; /* Right-to-left */
    text-align: center; /* Center text by default */
}

.container {
    background-color: var(--container-background);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 650px;
    width: 90%;
    margin: 20px;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    border: 3px dashed var(--brand-color);
    border-radius: 50%; /* Circular placeholder */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    background-color: #f1f1f1;
    color: var(--light-text-color);
    font-size: 0.9em;
    font-weight: 300;
}

/* Optional: Style for actual logo image */
.logo-placeholder img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

h1 {
    color: var(--brand-color);
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 0;
}

h2 {
    font-size: 1.6em;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 20px;
    margin-top: 0;
}

.tagline {
    font-size: 1.15em;
    color: var(--light-text-color);
    margin-bottom: 25px;
    font-weight: 300;
}

.separator {
    width: 80px;
    height: 3px;
    background-color: var(--brand-color);
    margin: 20px auto 25px auto;
    border-radius: 2px;
}

.description {
    font-size: 1em;
    color: var(--text-color);
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.contact-info h3 {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--brand-color);
    margin-bottom: 15px;
}

.contact-info p {
    margin: 8px 0;
    font-size: 1em;
    color: var(--light-text-color);
}

.contact-info i {
    color: var(--brand-color);
    margin-left: 8px; /* Icon spacing for RTL */
    width: 20px; /* Ensure consistent icon alignment */
    text-align: center;
}

.contact-info a {
    color: var(--light-text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--brand-color);
}

.footer {
    margin-top: 30px;
    font-size: 0.85em;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }
    h1 {
        font-size: 2.4em;
    }
    h2 {
        font-size: 1.4em;
    }
    .tagline {
        font-size: 1.05em;
    }
    .description {
        font-size: 0.95em;
    }
}