* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f7f7;
    direction: rtl; /* Set for Arabic language */
    text-align: right;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3 {
    color: #004aad; /* Primary Blue from the app's branding */
    margin-bottom: 15px;
    font-weight: 700;
}

h2 {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
}

p {
    margin-bottom: 10px;
}

.section {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}

.dark-bg {
    background-color: #004aad;
    color: white;
}
.dark-bg h2, .dark-bg h3 {
    color: white;
}

/* --- Buttons --- */
.btn-primary {
    display: inline-block;
    background-color: #ff9900; /* Secondary Orange for call-to-action */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #e68a00;
}

/* --- Hero Section --- */
.hero {
    background-color: #004aad;
    color: white;
    padding: 80px 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.hero h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 10px;
}

.hero .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.hero .tagline {
    margin-top: 40px;
    font-style: italic;
    font-size: 0.9em;
    opacity: 0.8;
}

/* --- Mission & Vision Section --- */
.two-col {
    display: flex;
    gap: 40px;
    /* Stack columns on small screens */
    flex-direction: column; 
}

@media (min-width: 768px) {
    .two-col {
        flex-direction: row;
    }
    .text-block {
        flex: 1;
    }
}
@media (max-width: 768px){
    #logotitle {
        width: 200px;
    }
    #logophone2 {
        width: 120px !important;
        height: 120px !important;
    }
}
@media (max-width: 500px){
    .contentTitle {
        align-items: end !important;
        column-gap: 0 !important;
    }
    #logophone {
        width: 185px !important;
        height: 300px !important;
    }
}

/* --- How It Works Section (Steps) --- */
.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 200px; /* Flexible width for responsiveness */
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step-number {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: #ff9900;
    margin-bottom: 5px;
}

.step p {
    margin: 0;
    font-size: 0.95em;
}

/* --- Target Audience Section --- */
.audience-list ul {
    list-style: none;
    padding-right: 0;
    margin-top: 20px;
}

.audience-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    font-size: 1.1em;
    position: relative;
    padding-right: 25px;
}

/* --- Benefits Section --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
}
.benefit h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

/* --- Footer --- */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}
footer p {
    margin: 5px 0;
}