.ebook-signup-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding: 60px;
    background-color: #fcfcfc;
    font-family: inherit;
    box-sizing: border-box;
}

.ebs-content-side {
    flex: 1 1 450px;
}

.ebs-image-side {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ebs-overline {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 12px;
    font-weight: 600;
}

.ebs-title {
    font-size: 42px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.ebs-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.ebs-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebs-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ebs-bullet-icon {
    display: inline-flex;
    color: #6a6a6a;
    font-size: 18px;
}
.ebs-bullet-icon svg {
    width: 18px;
    height: 18px;
    fill: #6a6a6a;
}

.ebs-bullet-text {
    font-size: 15px;
    color: #333;
}

/* Form Styles */
.ebs-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.ebs-inputs-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.ebs-input {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.ebs-input:focus {
    border-color: #555;
}

.ebs-submit-btn {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: #555555;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.ebs-submit-btn:hover {
    opacity: 0.9;
}

.ebs-privacy {
    font-size: 13px;
    color: #777;
}

/* Image Side & Badge Styling */
.ebs-media-wrapper {
    position: relative;
    max-width: 100%;
}

.ebs-main-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ebs-circle-badge {
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 100px;
    height: 100px;
    background-color: #e5e5e5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .ebook-signup-container {
        padding: 30px 20px;
        gap: 30px;
    }
    .ebs-inputs-row {
        flex-direction: column;
    }
    .ebs-circle-badge {
        width: 80px;
        height: 80px;
        font-size: 13px;
        bottom: 5%;
        right: 5%;
    }
}
