/* General Body Styles */
body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    line-height: 1.8;
    color: #333; /* Dark grey for text for better readability */
    background-color: #fdfdfd; /* Slightly off-white */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.07); /* Softer, more modern shadow */
    border-radius: 10px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    padding: 50px 20px;
    background-color: #ffffff; /* Clean white background */
    border-bottom: 1px solid #f0f0f0; /* Lighter border */
    border-radius: 10px 10px 0 0;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 2.6em; /* Slightly larger for impact */
    color: #0d2c54; /* Deep, professional blue */
    font-weight: 700;
    margin: 0;
}

.hero-subtitle {
    font-size: 1.2em;
    color: #5a6472; /* Softer grey-blue */
    margin-top: 10px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    animation: bob 3s ease-in-out infinite;
}

.hero-cta-container {
    display: none; /* Hide on desktop */
}

@keyframes bob {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Main Content */
main {
    padding: 30px 20px;
}

h2 {
    font-size: 2.1em;
    color: #0d2c54; /* Consistent deep blue */
    border-bottom: 2px solid #e0e8f3; /* Subtler border */
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 25px;
}

p, li {
    font-size: 1.1em;
    margin-bottom: 1.2em; /* More spacing */
    color: #333;
}

ul {
    list-style-type: '✓';
    padding-right: 25px;
}

li {
    padding-right: 12px;
    margin-bottom: 1em;
}

strong {
    font-weight: 700; /* Bolder for emphasis */
    color: #000;
}

/* Call to Action Button */
.cta-button-container {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #007bff, #0056b3); /* Professional blue gradient */
    color: #ffffff;
    padding: 18px 45px;
    font-size: 1.5em;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(180deg, #0069d9, #004a99);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    transform: translateY(-3px);
}

.cta-subtext {
    font-size: 0.9em;
    color: #666;
    margin-top: 15px;
}

/* Testimonial / Quote Block */
.quote {
    background-color: #f8f9fa; /* Lighter grey */
    border-right: 4px solid #007bff; /* Consistent blue */
    padding: 30px;
    margin: 35px 0;
    font-style: italic;
    font-size: 1.15em;
    position: relative;
    border-radius: 8px;
}

/* Confidence Pact Section */
.confidence-pact {
    padding: 50px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    text-align: center;
}

.pact-title {
    font-size: 2.2em;
    color: #0d2c54;
    margin-bottom: 40px;
    font-weight: 700;
}

.pact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px; /* Slightly wider for 4 items */
    margin: 0 auto;
}

.pact-item {
    text-align: center;
    padding: 20px;
}

.pact-icon {
    margin-bottom: 20px;
    color: #007bff; /* Accent blue */
}

.pact-item h3 {
    font-size: 1.3em;
    color: #0d2c54;
    margin-bottom: 10px;
    font-weight: 600;
}

.pact-item p {
    font-size: 1em;
    color: #5a6472;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    margin-top: 30px;
}

.faq-title {
    text-align: center;
    font-size: 2em;
    color: #0d2c54;
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 1.1em;
    color: #555;
    padding-right: 15px;
    border-right: 3px solid #007bff;
}




.quote::before {
    content: '“';
    font-size: 4em;
    color: #e9ecef; /* Subtler quote mark */
    position: absolute;
    top: 5px;
    right: 20px;
    line-height: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 0.9em;
    color: #6c757d; /* Softer footer text */
    border-radius: 0 0 10px 10px;
}

footer p {
    margin: 0.5em 0;
    font-size: 0.9em;
}

footer a {
    color: #0056b3; /* Darker blue for links */
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}

/* Legal Pages Specific Styles */
.legal-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.legal-container h1 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-container a {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        justify-content: space-around; /* Distribute content */
        align-items: center;
        height: 100vh; /* Full viewport height */
        padding: 20px;
        box-sizing: border-box;
    }

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-title {
        display: none; /* Hide title on mobile as per screenshot */
    }

    .hero-subtitle {
        font-size: 1.3em; /* Make subtitle slightly larger */
        margin-bottom: 20px;
    }

    .hero-image {
        order: 2;
        margin-bottom: 0; /* Remove margin */
        flex-grow: 1; /* Allow image to take available space */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        max-width: 90%; /* Larger image */
        height: auto;
        animation: none; /* Remove bobbing animation */
    }

    .hero-cta-container {
        display: block; /* Show on mobile */
        order: 3;
        text-align: center;
        width: 100%;
        padding-bottom: 20px; /* Add some space at the bottom */
    }

    .cta-button {
        font-size: 1.6em;
        padding: 20px;
        border-radius: 30px; /* Rounded corners */
        width: 90%;
        max-width: 400px;
        background: #007bff; /* Solid blue color from image */
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        line-height: 1.3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .cta-button:hover {
        background: #0069d9; /* Darker blue on hover */
        transform: none;
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    }

    .cta-button .main-text {
        font-weight: 700;
    }

    .cta-button .sub-text {
        font-size: 0.7em;
        font-weight: 400;
        display: block; /* Make it a new line */
        margin-top: 5px;
    }

    .pact-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    .container {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 44, 84, 0.9);
    color: #fff;
    padding: 20px;
    text-align: center;
    animation: slide-up 0.5s ease-out;
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 1em;
}

.cookie-content a {
    color: #a9c7ff;
    text-decoration: underline;
}

.cookie-button {
    background: linear-gradient(180deg, #007bff, #0056b3);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-button:hover {
    background: linear-gradient(180deg, #0069d9, #004a99);
}

@keyframes slide-up {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Exclusive Benefits Section */
.exclusive-benefits {
    padding: 40px 20px;
    background-color: #f8f9fa; /* A slightly different, clean background */
    border-bottom: 1px solid #e9ecef;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Adjusted gap for 4 items */
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-icon {
    margin-bottom: 15px;
    color: #0d2c54; /* Professional blue from the theme */
}

.benefit-item h3 {
    font-size: 1.2em; /* Adjusted for 4 items */
    color: #0d2c54;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.95em; /* Adjusted for 4 items */
    color: #5a6472;
    line-height: 1.6;
}

/* Responsive for Benefits Section */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
        gap: 20px;
    }

    .exclusive-benefits {
        padding: 30px 15px;
    }

    .benefit-item h3 {
        font-size: 1.1em;
    }

    .benefit-item p {
        font-size: 0.9em;
    }
}
