/* style/ma-tc.css */
.page-ma-tc {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-ma-tc__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-ma-tc__bg-dark {
    background-color: #8B0000;
    color: #fff;
}

.page-ma-tc__bg-dark .page-ma-tc__section-title,
.page-ma-tc__bg-dark .page-ma-tc__section-description,
.page-ma-tc__bg-dark p,
.page-ma-tc__bg-dark h3 {
    color: #fff;
}

.page-ma-tc__bg-dark a {
    color: #FFD700;
}

.page-ma-tc__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.page-ma-tc__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-ma-tc__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-ma-tc__hero-actions .page-ma-tc__btn {
    margin: 0 10px;
}

.page-ma-tc__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-ma-tc__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-ma-tc__btn--primary:hover {
    background-color: #e6c200;
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-ma-tc__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-ma-tc__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
}

.page-ma-tc__btn--link {
    background-color: transparent;
    color: #FFD700;
    text-decoration: underline;
    padding: 0;
}

.page-ma-tc__btn--link:hover {
    color: #e6c200;
}

.page-ma-tc__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-ma-tc__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-ma-tc__section-description {
    text-align: center;
    font-size: 1.1em;
    max-width: 900px;
    margin: -30px auto 60px auto;
    color: #555;
}

.page-ma-tc__intro,
.page-ma-tc__guide,
.page-ma-tc__tips,
.page-ma-tc__faq,
.page-ma-tc__call-to-action {
    padding: 80px 0;
}

.page-ma-tc__grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-ma-tc__grid-layout--reverse {
    grid-template-areas: "image content";
}

.page-ma-tc__grid-layout--reverse .page-ma-tc__tips-content { grid-area: content; }
.page-ma-tc__grid-layout--reverse .page-ma-tc__tips-image { grid-area: image; }

.page-ma-tc__intro-content h2,
.page-ma-tc__tips-content h2 {
    text-align: left;
}

.page-ma-tc__intro-content p,
.page-ma-tc__tips-content p {
    margin-bottom: 20px;
    color: #555;
}

.page-ma-tc__intro-content a {
    color: #8B0000;
    font-weight: bold;
}

.page-ma-tc__img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-ma-tc__features {
    padding: 80px 0;
    text-align: center;
}

.page-ma-tc__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-ma-tc__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-ma-tc__feature-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-ma-tc__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-ma-tc__feature-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #FFD700;
}

.page-ma-tc__feature-item p {
    font-size: 1em;
    color: #eee;
}

.page-ma-tc__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-ma-tc__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-ma-tc__step-item:hover {
    transform: translateY(-5px);
}

.page-ma-tc__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #8B0000;
    color: #FFD700;
    font-size: 1.8em;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(139, 0, 0, 0.4);
}

.page-ma-tc__step-heading {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 15px;
}

.page-ma-tc__step-item p {
    color: #666;
}

.page-ma-tc__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-ma-tc__tips ul {
    list-style: none;
    padding-left: 0;
}

.page-ma-tc__tips li {
    background-color: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #444;
}

.page-ma-tc__tips li strong {
    color: #8B0000;
}

.page-ma-tc__download-app {
    padding: 80px 0;
    text-align: center;
}

.page-ma-tc__download-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-ma-tc__btn--download-ios,
.page-ma-tc__btn--download-android {
    background-color: #FFD700;
    color: #8B0000;
    display: inline-flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.page-ma-tc__btn--download-ios:hover,
.page-ma-tc__btn--download-android:hover {
    background-color: #e6c200;
}

.page-ma-tc__download-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

.page-ma-tc__download-note {
    margin-top: 30px;
    font-size: 1em;
    color: #eee;
}

.page-ma-tc__download-note a {
    color: #FFD700;
    text-decoration: underline;
}

.page-ma-tc__faq {
    padding: 80px 0;
}

.page-ma-tc__accordion {
    max-width: 900px;
    margin: 50px auto 0 auto;
}

.page-ma-tc__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-ma-tc__accordion-header {
    padding: 20px;
    font-size: 1.2em;
    color: #8B0000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: background-color 0.3s ease;
}

.page-ma-tc__accordion-header:hover {
    background-color: #f5f5f5;
}

.page-ma-tc__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-ma-tc__accordion-item.active .page-ma-tc__accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.page-ma-tc__accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fcfcfc;
}

.page-ma-tc__accordion-content p {
    padding-bottom: 20px;
    color: #555;
}

.page-ma-tc__accordion-content a {
    color: #8B0000;
    font-weight: bold;
}

.page-ma-tc__call-to-action {
    background-color: #8B0000;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.page-ma-tc__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-ma-tc__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #eee;
}

.page-ma-tc__cta-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-ma-tc__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-ma-tc__hero-title {
        font-size: 2.8em;
    }
    .page-ma-tc__section-title {
        font-size: 2em;
    }
    .page-ma-tc__grid-layout {
        grid-template-columns: 1fr;
    }
    .page-ma-tc__grid-layout--reverse {
        grid-template-areas: unset;
    }
    .page-ma-tc__intro-image,
    .page-ma-tc__tips-image {
        order: -1; /* Image appears first on smaller screens */
        margin-bottom: 30px;
    }
    .page-ma-tc__intro-content h2,
    .page-ma-tc__tips-content h2 {
        text-align: center;
    }
    .page-ma-tc__download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-ma-tc__hero-title {
        font-size: 2.2em;
    }
    .page-ma-tc__hero-subtitle {
        font-size: 1.1em;
    }
    .page-ma-tc__section-title {
        font-size: 1.8em;
    }
    .page-ma-tc__cta-title {
        font-size: 2.2em;
    }
    .page-ma-tc__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-ma-tc__guide-steps,
    .page-ma-tc__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-ma-tc__intro,
    .page-ma-tc__guide,
    .page-ma-tc__tips,
    .page-ma-tc__faq,
    .page-ma-tc__call-to-action {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-ma-tc__hero-title {
        font-size: 1.8em;
    }
    .page-ma-tc__hero-subtitle {
        font-size: 1em;
    }
    .page-ma-tc__btn {
        width: 100%;
        margin: 10px 0 !important;
    }
    .page-ma-tc__hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-ma-tc__cta-title {
        font-size: 1.8em;
    }
    .page-ma-tc__section-title {
        font-size: 1.5em;
    }
    .page-ma-tc__accordion-header {
        font-size: 1.1em;
    }
}