.elementor-1762 .elementor-element.elementor-element-4413145{--display:flex;}/* Start custom CSS for html, class: .elementor-element-12b7b9c *//* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #F3F4F6;
    line-height: 1.6;
    color: #333333;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 32px 16px;
}

/* Typography */
.main-title {
    font-size: 36px;
    font-weight: 800;
    color: #1C2526;
    margin-bottom: 16px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 12px;
}

.description {
    font-size: 18px;
    color: #333333;
    margin-bottom: 24px;
}

/* Responsive typography */
@media (min-width: 768px) {
    .main-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (min-width: 1024px) {
    .main-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

/* Card styles */
.header-section,
.steps-section .step,
.completion-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 32px;
    margin-bottom: 32px;
}

/* Info cards */
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-card {
    background: #F3F4F6;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.icon.difficulty-icon {
    color: #FFC107;
}

.info-label {
    font-size: 14px;
    color: #4B5563;
}

.info-value {
    font-weight: 700;
    color: #333333;
}

.difficulty.easy {
    color: #10B981;
}

.difficulty.medium {
    color: #FFC107;
}

.difficulty.hard {
    color: #FF7857;
}

/* Data types */
.data-types {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.data-type {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
}

/* Notice */
.notice {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FFC107;
    padding: 16px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
}

.notice-icon {
    width: 20px;
    height: 20px;
    color: #FFC107;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.notice-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
    font-size: 16px;
}

.notice-text {
    font-size: 14px;
    color: #4B5563;
}

/* Steps */
.step {
    margin-bottom: 24px;
}

.step-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.step-number {
    background: #FF7857;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 8px;
}

.step-description {
    font-size: 16px;
    color: #333333;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .step-title {
        font-size: 24px;
    }
}

/* Action box */
.action-box {
    background: rgba(255, 120, 87, 0.05);
    border: 1px solid rgba(255, 120, 87, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.action-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    font-size: 16px;
}

.action-text {
    font-size: 14px;
    color: #4B5563;
}

/* Tip */
.tip {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10B981;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: flex-start;
}

.tip-icon {
    width: 16px;
    height: 16px;
    color: #10B981;
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 4px;
    font-size: 14px;
}

.tip-text {
    font-size: 14px;
    color: #4B5563;
}

/* Completion section */
.completion-section {
    text-align: center;
    background: rgba(16, 185, 129, 0.1);
}

.completion-icon {
    width: 48px;
    height: 48px;
    color: #10B981;
    margin: 0 auto 16px;
}

.completion-title {
    font-size: 30px;
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 16px;
}

.completion-text {
    font-size: 18px;
    color: #333333;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .completion-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .completion-title {
        font-size: 48px;
    }
}

.next-steps {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.next-steps-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    font-size: 16px;
}

.next-steps-text {
    font-size: 14px;
    color: #4B5563;
}

/* CTA Section */
.cta-section {
    background: white;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
    text-align: center;
}

.cta-title {
    font-weight: 700;
    color: #333333;
    margin-bottom: 8px;
    font-size: 24px; /* Increased for prominence */
}

.cta-text {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 16px;
}

.cta-button {
    display: inline-block;
    background: #FFC107; /* Yellow CTA button */
    color: #333333;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background: #E8B923; /* Darker yellow on hover */
}

/* Tabs Section */
.tabs-section {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 32px;
    margin-bottom: 32px;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tabs-nav-item {
    list-style: none;
}

.tabs-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn--accent {
    background-color: #FF7857;
    color: white;
}

.btn--light {
    background-color: #E5E7EB;
    color: #333333;
}

.btn--fill {
    width: 40px;
    text-align: center;
}

.btn--large {
    padding: 10px 20px;
}

.btn--pill {
    border-radius: 20px;
}

.tabs-btn.active {
    background-color: #FF7857;
    color: white;
}

.tabs-content {
    display: block;
}

.tabs-tab {
    display: none;
}

.tabs-tab.active {
    display: block;
}

.tabs-tab ul {
    list-style: none;
    padding: 0;
}

.tabs-tab ul li {
    margin-bottom: 8px;
}

.tabs-tab ul li a {
    color: #3B82F6;
    text-decoration: none;
    font-size: 14px;
}

.tabs-tab ul li a:hover {
    text-decoration: underline;
}/* End custom CSS */