/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
}

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

.content-wrapper {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Left column styles */
.left-column {
    flex: 1;
    padding: 60px 40px;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 30px;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #2563eb;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Benefits section */
.benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.icon {
    width: 24px;
    height: 24px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-item .text {
    font-size: 16px;
}

/* Form styles */
.form-container {
    background-color: #f8fafc;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

button {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #1d4ed8;
}

#form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

#form-message.success {
    background-color: #dcfce7;
    color: #166534;
    display: block;
}

#form-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
    display: block;
}

/* Testimonial styles */
.testimonial {
    border-left: 3px solid #2563eb;
    padding-left: 20px;
}

.quote {
    font-style: italic;
    font-size: 16px;
    color: #555;
}

.author {
    font-weight: 600;
    margin-top: 10px;
    font-size: 14px;
}

/* Right column styles */
.right-column {
    flex: 1;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-container {
    position: relative;
    width: 80%;
    max-width: 400px;
}

.newsletter-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.subscribers-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #2563eb;
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.subscribers-badge .number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.subscribers-badge .text {
    font-size: 12px;
    margin-top: 5px;
}

/* Footer styles */
footer {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

footer a {
    color: #2563eb;
    text-decoration: none;
}

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

/* Responsive styles */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .right-column {
        padding: 40px;
    }
    
    .image-container {
        width: 100%;
    }
    
    .subscribers-badge {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .left-column {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .left-column {
        padding: 30px 20px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .subscribers-badge {
        width: 80px;
        height: 80px;
    }
    
    .subscribers-badge .number {
        font-size: 18px;
    }
    
    .subscribers-badge .text {
        font-size: 10px;
    }
}
