.mile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
}

.mile-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1440px;
    color: #fff;
    padding: 95px 5.5em;
    width: 100%;
}

.mile-left {
    flex: 1;
    max-width: 42%;
    width: 450px;
}

.mile-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 584px;
}

.mile-title {
    font-size: 36px;
    font-weight: 300;
    margin: 0;
}

.mile-highlight {
    color: #00a9ff;
    font-weight: 700;
}

.mile-text {
    margin-top: 25px;
    font-size: 17px;
    line-height: 1.7;
    color: #d8d8d8;
}

.mile-text-strong {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
}

.mile-card {
    border-radius: 16px;
    padding-bottom: 40px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to right, #00000030, #d9d9d926);
	z-index:1001;
}

@media (max-width: 768px) {
    .mile-card {
        max-width: 100vw;
        width: 100%;
    }
}

.mile-card.open {
    background: linear-gradient(to top, #00000030, #d9d9d926);

    transition: all 0.3s ease;
}


.mile-card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;
    padding-top: 40px;
    padding-right: 24px;
}


.mile-card-header p {
    margin: 0;
    font-weight: 700;
}

.mile-card-header span {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.mile-card-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mile-card.open .mile-card-content {
    max-height: 1000px;
    padding: 15px 25px 25px 25px;
}

.mile-card.open .mile-card-header span {
    transform: rotate(180deg);
}

.mile-card-text {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    color: #c9c9c9;
}

.mile-strong {
    color: #fff;
}

.mile-button {
    margin-top: 20px;
    background: #00a9ff;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
}

a:where(:not(.wp-element-button)) {
    text-decoration: none;
}

.mile-button span {
    font-size: 18px;
    text-decoration: none;
}

.mile-button:hover {
    background: #0090db;
    transition: 0.3s;
}

@media (max-width: 900px) {
    .mile-container {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .mile-left,
    .mile-right {
        max-width: 100%;
    }

    .mile-title {
        font-size: 28px;
    }

    .mile-text,
    .mile-card-text {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .mile-title {
        font-size: 26px;
    }

    .mile-text,
    .mile-card-text {
        font-size: 16px;
    }

    .mile-button {
        padding: 10px 20px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .mile-container {
        padding: 20px;
    }

    .mile-card-header {
        padding-top: 18px;
    }


    .mile-card {
        padding-bottom: 18px;
    }
}