body {
    background-color: #f0f7ff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-wrap {
    background: linear-gradient(135deg, #2c80ff 0%, #1a5fd8 100%);
    color: white;
    padding: 30px 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo i {
    font-size: 2.5rem;
    color: #ffcc00;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 30px;
    transition: all 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
}

.header-title {
    text-align: center;
    margin-top: 30px;
}

.header-title h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.header-title p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffcc00;
}

.stat-label {
    font-size: 1rem;
    margin-top: 5px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section {
    background: white;
    border-radius: 15px;
    padding: 30px;
}

.section-title {
    color: #1a5fd8;
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f5ff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: #2c80ff;
}

.section-subtitle {
    color: #333;
    font-size: 1.3rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
}

.step {
    flex: 1;
    min-width: 250px;
    background: #f8faff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    border: 2px solid #e6f0ff;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #2c80ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 2.5rem;
    color: #2c80ff;
    margin: 15px 0;
}

.step-title {
    font-weight: 700;
    margin: 10px 0;
    color: #333;
}

.file-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.file-type {
    background: #f8faff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.file-icon {
    font-size: 2.5rem;
    color: #2c80ff;
    margin-bottom: 15px;
}

.file-name {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.file-desc {
    color: #666;
    font-size: 0.9rem;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-table th {
    background: #2c80ff;
    color: white;
    padding: 15px;
    text-align: left;
}

.price-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.price-table tr:nth-child(even) {
    background: #f8faff;
}

.price-table tr:hover {
    background: #f0f7ff;
}

.price-amount {
    font-weight: 700;
    color: #00c853;
}

.guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.guideline {
    background: #f8faff;
    border-radius: 12px;
    padding: 20px;
}

.guideline.good {
    border-left: 5px solid #00c853;
}

.guideline.bad {
    border-left: 5px solid #ff5252;
}

.guideline-title {
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guideline.good .guideline-title {
    color: #00c853;
}

.guideline.bad .guideline-title {
    color: #ff5252;
}

/*====================*/
.share .method-icon {
    background: #e6f9ef;
    color: #00c853;
}

.method-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.method-subtitle {
    color: #666;
    margin-bottom: 15px;
}

.highlight-box {
    background: #fff8e1;
    border-left: 4px solid #ffcc00;
    padding: 15px;
    margin-top: 20px;
    border-radius: 0 8px 8px 0;
}

.share-more {
    position: absolute;
    right: 50px;
    top: 55px;
    color: #F44336;
    font-weight: 700;
}

.share-link-generator {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
    border-radius: 12px;
    padding: 25px;
    margin-top: 25px;
}

.input-group {
    display: flex;
    margin-top: 15px;
    margin-bottom: 20px;
}

.share-link {
    flex-grow: 1;
    padding: 15px;
    border: 2px solid #2c80ff;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
    background: white;
    overflow-x: auto;
    white-space: nowrap;
}

.copy-btn {
    background: #2c80ff;
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 16px;
}

.copy-btn:hover {
    background: #1a5fd8;
}

.commission-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.commission-item {
    background: #f8faff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.commission-percent {
    font-size: 3rem;
    font-weight: 800;
    color: #00c853;
    line-height: 1;
    margin-bottom: 10px;
}

.commission-desc {
    color: #555;
    font-size: 1rem;
}

.warning-box {
    background: #fff2f2;
    border-left: 4px solid #ff5252;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.warning-box h3 {
    color: #ff5252;
    margin-bottom: 10px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-button {
    border: 0;
    display: inline-block;
    background: linear-gradient(135deg, #00c853 0%, #00a844 100%);
    color: white !important;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 20px;
    box-shadow: 0 5px 10px rgba(44, 128, 255, 0.3);
    cursor: pointer;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(83, 83, 83, 0.6);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #2c80ff 0%, #1a5fd8 100%);
}

.cta-button.third {
    background: linear-gradient(135deg, #ff5252 0%, #d50000 100%);
}

.cta-section {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #2c80ff 0%, #1a5fd8 100%);
    color: white;
    border-radius: 20px;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.faq-question {
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: #555;
    display: block;
}

@media (max-width: 992px) {

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header {
        padding: 20px 15px;
        border-radius: 0 0 15px 15px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .stats-bar {
        flex-direction: column;
        gap: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}