/* Content Section Styles */

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Info Section */
.info-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-section h2 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 20px;
}

.info-section p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    padding: 12px 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.features-list li:before {
    content: "✓";
    color: #667eea;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
}

/* Widget Section */
.widget-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.widget-section h2 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 20px;
}

.widget-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    background: #f7fafc;
    border-radius: 10px;
    padding: 20px;
}

/* Disclaimer Section */
.disclaimer-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.disclaimer-section h3 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 20px;
}

.disclaimer-section p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive Content */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}
