* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    background-color: #ffffff;
    color: #000;
}

.page {
    display: flex;
    flex-direction: row-reverse; 
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    gap: 40px; 
    min-height: 100vh;
}

.image img {
    width: 300px;   
    max-width: 100%;
}

.content {
    max-width: 420px;
    text-align: right;
}

.logo {
    width: 90px;
    margin-bottom: 25px;
}

h1 {
    font-size: 34px;
    font-weight: 700;
    color: #000000; 
    margin-bottom: 15px;
}

p {
    font-size: 16px;
    font-weight: 400;
    color: #777777; 
    line-height: 1.9;
    margin-bottom: 30px;
}

button {
    background-color: #C40005;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: all 0.3s ease;
}
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


button:hover {
    opacity: 0.9;
}

.social {
    margin-top: 30px;
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f2f2f2;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-btn:hover {
    background-color: #C40005;
    color: #ffffff;
}

.facebook { color: #1877f2; }
.youtube { color: #ff0000; }
.instagram { color: #e1306c; }
.whatsapp { color: #25d366; }

@media (max-width: 768px) {

    .page {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
        text-align: center;
    }

    .content {
        text-align: center;
    }

    .image img {
        width: 240px;
    }

    h1 {
        font-size: 28px;
    }

    p {
        font-size: 15px;
    }
    .social {
        justify-content: center;
    }
}
