body {
    padding-top: 70px;
    font-family: 'Segoe UI', sans-serif;
}

/* Hero */
.hero-section {
    padding: 80px 0;
    background: #f5f9ff;
}

.hero-section h1 {
    font-size: 40px;
    font-weight: 700;
}

/* Sections */
.section-padding {
    padding: 70px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 40px;
}

/* Features */
.feature-box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}

/* Workflow */
.workflow-section {
    background: #f4f8ff;
    padding: 70px 0;
}

.workflow-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.workflow-step {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.workflow-arrow {
    font-size: 24px;
    font-weight: bold;
    color: #0a7cff;
}

/* Footer */
.mes-footer a {
    color: #cfd8ff;
    text-decoration: none;
}

.mes-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links li {
    margin-bottom: 8px;
}

.mes-footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}



/* FAQ */
.faq-section {
    padding: 70px 0;
    background: #f4f8ff;
}

.faq-search {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 25px;
    display: block;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.faq-categories {
    text-align: center;
    margin-bottom: 25px;
}

.faq-cat {
    background: #e6efff;
    border: none;
    padding: 8px 16px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

.faq-cat.active {
    background: #0a7cff;
    color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    color: #0a7cff;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    font-size: 18px;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin-top: 12px;
    line-height: 1.6;
}

/* FAQ Hero */
.faq-hero {
    background: linear-gradient(135deg, #0a7cff, #0047ab);
    color: #fff;
    padding: 70px 0 60px;
}

.faq-hero h1 {
    font-size: 36px;
}

.faq-hero p {
    opacity: 0.9;
    font-size: 18px;
}

/* FAQ section spacing */
.faq-section {
    padding: 60px 0 80px;
    background: #f4f8ff;
}