:root {
    --primary-color: #f39c12;
    /* Golden/Orange accent for "Premium" feel */
    --secondary-color: #2c3e50;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Almarai', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header / Hero Section */
.hero {
    text-align: center;
    margin-bottom: 50px;
}

.pre-headline {
    font-style: italic;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.headline {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.3;
}

.headline span.highlight {
    color: var(--primary-color);
}

.sub-headline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-weight: 400;
}

/* Main Content Area */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
}

.ebook-container {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.ebook-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
    transform: rotateY(-10deg) rotateX(2deg);
    transition: var(--transition);
}

.ebook-image:hover {
    transform: rotateY(0deg) scale(1.02);
}

/* Arrow Styling */
.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(0);
    }

    40% {
        transform: translateX(-10px);
    }

    60% {
        transform: translateX(-5px);
    }
}

@media (max-width: 768px) {
    .arrow-container {
        display: none;
        /* Hide arrow on mobile */
    }
}

/* Opt-in Box */
.optin-box {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-color);
    max-width: 500px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header h2 span {
    color: #e74c3c;
    font-weight: 800;
}

.form-header p {
    color: #7f8c8d;
    font-size: 1rem;
}

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    text-align: right;
}

.input-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.submit-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.privacy-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Bullets Section */
.bullets-section {
    background: #fff;
    padding: 60px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.bullets-container h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.bullet-points {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.bullet-points li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.bullet-points li:last-child {
    border-bottom: none;
}

.bullet-points .icon {
    font-size: 2rem;
    background: #fdf2e9;
    padding: 10px;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bullet-points .text {
    font-size: 1.1rem;
    color: #444;
}

.bullet-points .text strong {
    display: block;
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .headline {
        font-size: 1.8rem;
    }

    .sub-headline {
        font-size: 1rem;
    }

    .optin-box {
        padding: 20px;
    }
}