/* Simple Page Styles */

/* Content Container */
.simple-page-content {
    padding: 80px 80px 80px 120px;
}

/* Header */
.simple-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* Typography */
.simple-page-content h1 {
    font-size: 61px;
    font-weight: 700;
    margin: 0;
}

.simple-page-content h2 {
    font-size: 27px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.simple-page-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Lists */
.simple-page-content ul {
    margin-bottom: 15px;
    margin-left: 20px;
}

/* Back Button */
.btn-back {
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-back:hover {
    transform: scale(1.1);
}

.btn-back img {
    filter: invert(56%) sepia(68%) saturate(3088%) hue-rotate(176deg) brightness(96%) contrast(85%);
}

/* Help Page */
.help-text {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 25px;
}

.help-section-title {
    font-size: 27px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 25px;
}

/* Steps */
.step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter) ".";
    font-size: 27px;
    font-weight: 700;
    color: #000000;
    min-width: 35px;
}

.step-content h3 {
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.step-content p {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

/* Links */
.help-text a {
    color: #29ABE2;
    text-decoration: none;
    font-weight: 700;
}

.help-text a:hover {
    text-decoration: underline;
}

/* Tablet & Mobile (max-width: 850px) */
@media(max-width: 850px) {
    .simple-page-content {
        padding: 40px;
        padding-bottom: 100px;
    }

    .simple-page-content h1 {
        font-size: 40px;
    }

    /* Help Page */
    .help-section-title {
        font-size: 21px;
    }

    .step-item::before {
        font-size: 21px;
    }

    .step-content h3 {
        font-size: 21px;
    }
}

/* Small Mobile (max-width: 450px) */
@media(max-width: 450px) {
    .simple-page-content {
        padding: 20px;
    }
}
