.wide-collection-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.collection-inner {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 40px;
    /* align-items: center; */
    margin-bottom: 40px;
}

.collection-image {
    width: 48%;
    margin-right: 1%;
}

.collection-image img {
    width: 100%;
    height: auto;
}

.collection-text {
    width: 52%;
}

.collection-text h2 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.collection-text h2 .orange {
    color: #e86700;
    font-weight: bold;
}

.collection-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.collection-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.item-btn {
    font-size: 16px;
    padding: 14px 24px;
    border: 2px solid #f06c00;
    border-radius: 30px;
    color: #f06c00;
    background: white;
    font-weight: bold;
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.item-btn:hover {
    background-color: #f06c00;
    color: white;
}

.item-btn .arrow {
    margin-left: 10px;
}


@media (max-width: 768px) {
    .collection-inner {
        flex-direction: column;
        text-align: center;
    }

    .collection-text {
        width: 100%;
    }

    .collection-image {
        width: 100%;
    }
}


.collection-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.collection-block {
    margin-bottom: 60px;
}

.collection-block h2 {
    text-align: center;
}

.collection-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.collection-text {
    flex: 1;
    min-width: 300px;
}

.collection-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.collection-bar {
    height: 3px;
    background-color: #f58c35;
    width: 60px;
    margin-bottom: 10px;
}

.collection-img {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.collection-img img {
    max-width: 100%;
    height: auto;
}

.collection-tags {
    margin-top: 20px;
}

.collection-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    margin-bottom: 100px;
}

.collection-table th,
.collection-table td {
    border: 3px solid #ffffff;
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}

.collection-table td {
    background-color: #EEEEEE;
    font-size: 14px;
}


.collection-table th.tag-orange {
    background-color: #f58c35;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    width: 160px;
}

@media (max-width: 768px) {
    .collection-flex {
        flex-direction: column;
    }

    .collection-text,
    .collection-img {
        text-align: center;
    }

    .collection-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .collection-table th,
    .collection-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        border: none;
    }

    .collection-table th.tag-orange {
        width: 100%;
    }
}


.contact-reminder {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.reminder-heading h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.reminder-heading h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.reminder-box {
    background: #fde3ce;
    padding: 40px;
    text-align: left;
}

.reminder-box p {
    line-height: 1.9;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .reminder-heading h2 {
        font-size: 1.4rem;
    }

    .reminder-heading h3 {
        font-size: 1.6rem;
    }

    .reminder-box {
        padding: 20px;
    }
}