.stats,
.team {
    display: grid;
    gap: 2rem
}

*,
.timeline-item {
    box-sizing: border-box
}

.toc a,
nav a {
    transition: color .3s;
    padding: 5px 10px;
    text-decoration: none
}

.download-btn,
.toc a,
.toc a:hover,
nav a {
    text-decoration: none
}

.comparison-table th,
.stat-card {
    background: linear-gradient(135deg, #004d3a, #007553)
}

.contact-card,
.hero,
.stat-card,
.team-member,
.trust-badge,
footer {
    text-align: center
}

.footer-links,
.toc ul,
nav ul {
    list-style: none
}

header {
    padding: 1rem 0;
    position: sticky;
    background-color: #004d3a;
    box-shadow: 0 2px 15px rgba(0, 77, 58, .3);
    position: sticky;
    top: 0;
    z-index: 1000
}

h4 {
    color: #004d3a;
    margin: 1.5rem 0 .8rem;
    font-size: 1.2rem
}

.stats {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 3rem 0
}

.stat-card {
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 77, 58, .2)
}

.team-member,
.value-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 77, 58, .1)
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: .5rem;
    color: gold
}

.stat-label {
    font-size: 1.1rem;
    opacity: .9
}

.team {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin: 3rem 0
}

.team-member {
    padding: 1.5rem;
    transition: transform .3s;
    background: #f8f9fa
}

.download-btn,
.screenshot-item {
    transition: transform .3s, box-shadow .3s
}

.team-member:hover {
    transform: translateY(-5px)
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: #00b96e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem
}

.member-name {
    font-weight: 700;
    color: #004d3a;
    margin-bottom: .5rem
}

.member-role,
.toc a,
nav a {
    font-weight: 500
}

.member-role {
    color: #00b96e;
    margin-bottom: 1rem
}

.mission-vision,
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0
}

.value-icon,
.value-title {
    color: #004d3a;
    margin-bottom: 1rem
}

.value-card {
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #00b96e
}

.contact-card,
.timeline-content {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    border-radius: 10px
}

.value-icon {
    font-size: 2.5rem
}

.value-title {
    font-weight: 700;
    font-size: 1.3rem
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #00b96e;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%
}

.timeline-item:nth-child(odd) {
    left: 0
}

.timeline-item:nth-child(2n) {
    left: 50%
}

.timeline-content {
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #004d3a
}

.timeline-date {
    font-weight: 700;
    color: #00b96e;
    margin-bottom: .5rem
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0
}

.contact-card {
    background: #f8f9fa;
    padding: 1.5rem
}

.contact-icon {
    font-size: 2rem;
    color: #00b96e;
    margin-bottom: 1rem
}

.card-icon,
.card-title {
    color: #004d3a;
    margin-bottom: 1rem
}

@media (max-width:768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center
    }

    .logo-container {
        justify-content: center
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem
    }

    nav ul {
        flex-direction: column;
        gap: .5rem;
        display: none
    }

    nav.active ul {
        display: flex
    }

    .hero h1 {
        font-size: 2.2rem
    }

    .hero p {
        font-size: 1.1rem
    }

    main {
        padding: 1.5rem
    }

    .timeline::after {
        left: 31px
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px
    }

    .timeline-item:nth-child(2n) {
        left: 0
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center
    }
}

@media (max-width:480px) {
    .hero {
        padding: 3rem 0
    }

    .hero h1 {
        font-size: 1.8rem
    }

    .hero p {
        font-size: 1rem
    }

    h2 {
        font-size: 1.6rem
    }

    h3 {
        font-size: 1.3rem
    }

    .stats {
        grid-template-columns: 1fr
    }
}

.footer-content,
.screenshot-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
}

.mission-card,
.vision-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 77, 58, .1);
    text-align: center
}

.mission-card {
    border-top: 5px solid #004d3a
}

.vision-card {
    border-top: 5px solid #00b96e
}

.card-icon {
    font-size: 3rem
}

.card-title {
    font-weight: 700;
    font-size: 1.5rem
}

.hero,
.hero h1,
.logo-text,
nav a {
    color: #fff
}

* {
    margin: 0;
    padding: 0
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222;
    background: linear-gradient(180deg, #f7fff9, #e6f4ee);
    min-height: 100vh
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px
}

.hero,
main {
    margin-bottom: 2rem
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px
}

.logo {
    height: 45px;
    width: auto;
    border-radius: 8px
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700
}

nav ul {
    display: flex;
    gap: 2rem
}

nav a {
    border-radius: 4px
}

nav a:hover {
    color: gold;
    background: rgba(255, 215, 0, .1)
}

.mobile-menu-btn {
    display: none;
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer
}

.download-btn,
.faq-question {
    font-weight: 700;
    font-size: 1.2rem
}

.hero {    background: linear-gradient(rgba(0, 77, 58, .8), rgba(0, 185, 110, .7)) center/cover fixed;

    padding: 4rem 0;
    position: relative
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .5)
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: .95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5)
}

.highlight {
    color: gold;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .7)
}

.download-btn,
.faq-question,
.toc a,
.toc h3,
a,
h1,
h2,
h3 {
    color: #004d3a
}

.download-btn {
    display: inline-block;
    background: linear-gradient(45deg, gold, #00b96e);
    padding: 15px 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2)
}

.comparison-table,
.toc {
    box-shadow: 0 4px 15px rgba(0, 77, 58, .1)
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .3)
}

main {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 77, 58, .15)
}

h2 {
    margin: 2.5rem 0 1.5rem;
    padding-bottom: .8rem;
    border-bottom: 3px solid #00b96e;
    font-size: 1.8rem
}

h3 {
    margin: 2rem 0 1rem;
    font-size: 1.4rem
}

li,
p {
    font-size: 1.05rem
}

p {
    margin-bottom: 1.2rem
}

ol,
ul {
    margin: 1.2rem 0 1.2rem 2rem
}

li {
    margin-bottom: .8rem
}

.toc {
    background: linear-gradient(135deg, #f8f9fa, #e9f7ef);
    padding: 2rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    border-left: 5px solid #00b96e
}

.toc h3 {
    margin-top: 0;
    font-size: 1.5rem
}

.toc ul {
    margin: 0;
    columns: 2;
    column-gap: 2rem
}

.toc li {
    margin-bottom: .8rem;
    break-inside: avoid
}

.toc a {
    display: block;
    border-radius: 4px
}

.toc a:hover {
    color: #00b96e;
    background: rgba(0, 185, 110, .1)
}

.faq-item {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1.5rem
}

.faq-question {
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: 10px
}

.faq-question:before {
    content: "•";
    color: #00b96e;
    font-size: 2rem
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden
}

.comparison-table td,
.comparison-table th {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left
}

.comparison-table th {
    color: #fff;
    font-weight: 600
}

.comparison-table tr:nth-child(2n) {
    background-color: #f8f9fa
}

.comparison-table tr:hover {
    background-color: #e9f7ef
}

.screenshots {
    margin: 3rem 0
}

.screenshot-grid {
    display: grid;
    gap: 20px;
    margin-top: 1.5rem
}

.screenshot-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.feature-card,
.trust-badge {
    box-shadow: 0 4px 15px rgba(0, 77, 58, .1)
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s
}

.footer-links a,
a {
    transition: color .3s;
    text-decoration: none
}

.screenshot-item:hover img {
    transform: scale(1.05)
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 2rem 0;
    flex-wrap: wrap
}

.trust-badge {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform .3s
}

.trust-badge:hover {
    transform: translateY(-3px)
}

.trust-badge i {
    font-size: 2.5rem;
    color: #00b96e;
    margin-bottom: 10px
}

footer {
    background: linear-gradient(135deg, #004d3a, #002e23);
    color: #fff;
    padding: 3rem 0;
    margin-top: 3rem
}

.footer-content {
    display: grid;
    gap: 2rem;
    text-align: left;
    margin-bottom: 2rem
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem
}

.footer-section h3 {
    color: gold;
    margin-bottom: 1rem;
    border-bottom: 2px solid #00b96e;
    padding-bottom: .5rem
}

.footer-links li {
    margin-bottom: .5rem
}

.footer-links a {
    color: #fff
}

.footer-links a:hover {
    color: gold
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 2rem
}

.disclaimer {
    font-size: .9rem;
    margin-top: 1rem;
    opacity: .8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

@media (max-width:768px) {

    .footer-content,
    .header-content {
        text-align: center
    }

    .footer-content,
    .screenshot-grid {
        grid-template-columns: 1fr
    }

    .header-content {
        flex-direction: column;
        gap: 1rem
    }

    .logo-container {
        justify-content: center
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem
    }

    nav ul {
        flex-direction: column;
        gap: .5rem;
        display: none
    }

    nav.active ul {
        display: flex
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero p {
        font-size: 1.1rem
    }

    main {
        padding: 1.5rem
    }

    .toc ul {
        columns: 1
    }

    .comparison-table {
        display: block;
        overflow-x: auto
    }

    .trust-badges {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width:480px) {
    .hero {
        padding: 3rem 0
    }

    .hero h1 {
        font-size: 1.8rem
    }

    .hero p {
        font-size: 1rem
    }

    .download-btn {
        padding: 12px 25px;
        font-size: 1.1rem
    }

    h2 {
        font-size: 1.6rem
    }

    h3 {
        font-size: 1.3rem
    }
}

a:hover {
    color: #00b96e
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0
}

.section-divider {
    height: 3px;
    background: linear-gradient(90deg, #004d3a, #00b96e, #004d3a);
    margin: 2.5rem 0;
    border: none;
    border-radius: 2px
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0
}

.feature-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform .3s, box-shadow .3s;
    border-left: 4px solid #00b96e
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 77, 58, .15)
}

.feature-card h4 {
    color: #004d3a;
    margin-bottom: 1rem;
    font-size: 1.2rem
}