/* Main content styles */
.dolyame-hero {
    margin-bottom: 80px;
    margin-top: 60px;
    display: flex;
        justify-content: space-between;
}
.dolyame-hero-image img {
    max-width: 100%;
}

.dolyame-hero-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.dolyame-hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
}

.dolyame-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    /* margin-top: 40px; */
}
.dolyame-hero-text{
    max-width: 600px;
}

.dolyame-feature-item {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dolyame-feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.dolyame-feature-icon{
    margin-bottom: 20px;
}

.dolyame-feature-text {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.dolyame-steps {
    margin-bottom: 60px;
}

.dolyame-steps-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.dolyame-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: space-between;
}

.dolyame-step-item {
    position: relative;
    /* padding-left: 70px; */
    text-align: center;
}

.dolyame-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background-color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.dolyame-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 15px;
}

.dolyame-step-text {
    font-size: 16px;
    line-height: 1.5;
}

/* Accordion styles */
.t585__accordion {
    border-top: 1px solid #eee;
}

.t585__wrapper {
    position: relative;
}

.t585__header {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.t585__header:hover {
    background-color: #f9f9f9;
}

.t585__trigger-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 40px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t585__trigger-button:focus {
    outline: none;
}

.t585__title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
}

.t585__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 15px;
}

.t585__lines svg {
    transition: transform 0.3s ease;
}

.t585__opened .t585__lines {
    transform: rotate(45deg);
}

.t585__content {
    overflow: hidden;
    transition: max-height 0.3s ease;
    max-height: 0;
}

.t585__content[hidden] {
    display: none;
}

.t585__textwrapper {
    padding-bottom: 20px;
}

.t585__border {
    height: 1px;
    background-color: #eee;
}
.dolyame-step-image img{
    max-width: 100%;
}

@media (max-width: 768px) {
    .dolyame-features-grid,
    .dolyame-steps-grid {
        grid-template-columns: 1fr;
    }

    .dolyame-hero-title {
        font-size: 28px;
    }

    .dolyame-hero-subtitle {
        font-size: 16px;
    }

    .t585__title {
        font-size: 14px;
    }

    .t585__text {
        font-size: 14px;
    }
    .dolyame-hero{
        flex-direction: column;
    }
    .dolyame-hero-text{
        text-align: center;
        order: 2;
    }
    .dolyame-hero-image{
        order: 1;
        margin-bottom: 20px;
        text-align: center;
    }
    .dolyame-hero-image img{
        max-width: 80%;
        
    }
    .dolyame-step-item{
        margin-bottom: 20px;
    }
    .dolyame-hero-button-link{
        width: 100%;
    }

}
