:root {
    --primary-color: #1e87f0;
    --secondary-color: #222;
    --accent-color: #f0506e;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, #1e87f0 0%, #0f6ecd 100%);
    color: white;
    padding: 80px 0 40px;
    margin-bottom: 40px;
}

.ad-slot {
    width: auto;
    border: 2px dashed #ccc;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.ad-slot:hover {
    border-color: var(--primary-color);
    background-color: #f0f7ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ad-slot.highlight {
    border-color: var(--accent-color);
    background-color: #fff0f3;
}

.ad-slot h4 {
    margin-top: 10px;
    color: #555;
}

.ad-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
}

.ad-size {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #666;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
}

.page-section {
    padding-top: 30px;
}

.section-header {
    border-top: 0;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    margin-bottom: 0;
}

.english-title {
    font-size: 16px;
    font-style: italic;
    margin-left: 15px;
    font-weight: normal;
}

.page-preview {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-top-color: var(--accent-color);
}

.contact-form {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.ad-example {
    width: 100%;
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    border-radius: 4px;
    text-align: center;
}

.ad-example .en-text {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
    font-style: italic;
}

.content-layout {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.content-main {
    flex: 1;
}

.content-sidebar {
    width: 300px;
}

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

    .content-sidebar {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .english-title {
        margin-left: 0;
        margin-top: 5px;
    }
}

.stats-counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.uk-card-badge {
    background-color: var(--accent-color);
}

.bilingual-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.chinese-text {
    font-weight: bold;
}

.english-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 2px;
}

.uk-list-bullet {
    list-style: none;
}

.button.success {
    height: max-content;
}