body, html {
    margin: 0;
    padding: 0;
    direction: rtl;
    font-family: Rubik, Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    height: 100%; /* Ensure the body and html take the full height */
}

/* Background Image */
.background-image {
    background-image: url('bg.webp'); /* Background image */
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 100vh; /* Minimum height to cover viewport */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: visible; /* Allow scrolling */
}


.content-box {
    background-color: rgba(255, 255, 255, 0.95); /* צבע לבן עם שקיפות של 5% */
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    max-width: 260px;
    margin-bottom: 20px;
}

.content-box h1 {
    font-size: 26px;
    color: #FF4E31;
    margin-top: -10px;
}

.content-box h2 {
    font-size: 28px;
    color: #111C3F;
    margin-top: -10px;
}

.content-box h3 {
    font-size: 20px;
    color: #42b8e9;
    margin-top: 10px;
}

/* General styling for all <p> elements inside .content-box */
.content-box p {
    font-size: 18px;
    color: #555;
    margin: 20px 0;
}

/* Specific styling for the additional-text paragraph */
.content-box p.additional-text {
    font-size: 14px; /* This will now correctly apply to the additional-text */
    color: #777;
    margin-top: 20px;
}

.custom-button {
    background: linear-gradient(135deg, #ff492c, #e3482e);
	font-family: Rubik, Arial, sans-serif;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgb(218 95 43);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-button .arrow {
    margin-right: 6px;
}

.custom-button:hover {
    box-shadow: 0 8px 20px rgb(255 95 0);
    transform: translateY(-2px);
}

.additional-text {
    font-size: 10px;
    color: #777;
}

/* עיצוב הלוגו התחתון */
.bottom-logo {
    max-width: 180px;
    margin: 20px;
}

@media screen and (max-width: 768px) {
    .content-box {
        padding: 20px;
        width: 80%;
    }

    .content-box h1 {
        font-size: 24px;
        color: #FF4E31;
        margin-top: -10px;
    }

    .content-box p, .custom-button {
        font-size: 20px;
    }

    .content-box h2 {
        font-size: 28px;
        color: #111C3F;
        margin-top: -10px;
    }

    .custom-button {
        padding: 10px 20px;
    }
}
