/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/components/Carousel/Carousel.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 300px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    height: 300px;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 15px;
    z-index: 2;
    font-size: 18px;
    transition: color 0.3s;
}

.control:hover {
    color: #b7b7b7;
}

.control.prev {
    left: -10px;
}

.control.next {
    right: -10px;
}

.indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active, .indicator:hover {
    background: white;
}
/*!****************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./src/components/About/about.css ***!
  \****************************************************************************************************************************************************************************************************************************************************************************/
.document {
    flex: 1 1;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    background: white;
    overflow: scroll;
    border: 1px solid #eee;
}

.header {
    color: #f24430;
    padding: 35px 40px 0;
    position: relative;
}

.header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 85%;
}

.header p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.95;
}

.content {
    padding: 40px;
    color: #333;
    line-height: 1.6;
}

h2 {
    color: #f24430;
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    position: relative;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
}

.features {
    margin: 20px 0 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 12px;
    align-items: center;
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-right: 6px;
    background-size: contain;
}

.feature-text {
    font-size: 16px;
    color: #555;
}

.steps {
    margin: 20px 0 30px;
}

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

.step-number {
    width: 20px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.step-text {
    font-size: 16px;
    color: #555;
}

.step-text .highlight {
    color: #f24430;
    font-weight: 500;
}

.bonus {
    background: #fff5f4;
    border-left: 4px solid #f24430;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 5px 5px 0;
    position: relative;
    overflow: hidden;
}

.conclusion {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 17px;
    position: relative;
}

@media (max-width: 650px) {
    .header {
        padding: 25px;
    }

    .header h1 {
        font-size: 24px;
        max-width: 100%;
    }

    .header p {
        max-width: 100%;
    }

    .content {
        padding: 25px;
    }

    h2 {
        font-size: 20px;
    }
}
