/* FAQ Page */
.md-faq-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px;
}
.md-faq-wrapper h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}
.md-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.6;
}
.md-faq-accordion {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.md-faq-accordion-header {
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    background: #f9fafb;
}
.md-faq-arrow {
    transition: transform 0.25s ease;
}
.md-faq-accordion.active .md-faq-arrow {
    transform: rotate(90deg);
}
.md-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.md-faq-inner {
    padding: 20px;
}
.md-faq-item {
    margin-bottom: 20px;
}
.md-faq-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}
.md-faq-item + .md-faq-item {
    margin-top: 20px;
}

/* Services Page */
.md-services-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.md-services-wrapper h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.md-services-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.6;
}
.md-section-title {
    font-size: 28px;
    font-weight: 700;
    margin: 50px 0 25px;
}
.md-service-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.md-service-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}
.md-service-block p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.md-list-title {
    font-weight: 600;
    margin-bottom: 10px;
}
.md-service-list,
.md-service-list li {
    list-style: none;
    padding: 0;
    margin: 0;
}
.md-service-list li {
    padding: 6px 0;
    font-size: 16px;
}
.md-cta-box {
    margin-top: 60px;
    padding: 40px;
    background: #f4f7ff;
    border-radius: 12px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

/* Card Grid Layout */
.md-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Card Style Matching Homepage */
.md-card {
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    color: #111;
    display: block;
}

.md-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}

.md-card h4 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}

.md-card span {
    font-size: 14px;
    opacity: 0.7;
}

