.container {
    max-width: 1200px;
    margin: auto;
}

.plywood-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0px;
    margin-top: 50px;
}

.plywood-content {
    flex: 1;
}

.plywood-title {
    font-size: 28px;
    font-weight: bold;
    color: #004D49;
    margin-bottom: revert !important;
    padding-bottom: 5px !important;
}

.plywood-subtitle {
    font-size: 16px;
    font-weight: bold;
    color: black;
    text-align: justify !important;
}

.plywood-desc {
    font-size: 14px;
    color: #444;
    margin-bottom: 20px;
    text-align: justify !important;
}

.plywood-features {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.plywood-features li {
    font-size: 14px;
    color: #444;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.plywood-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #004D49;
    font-size: 16px;
}

.plywood-buttons {
    margin-top: 25px;
}

.btn {
    padding: 15px 50px;
    font-size: 12px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.request-btn {
    background-color: #004D49;
    color: white;
}

.request-btn:hover {
    background-color: #0e4b0e;
}

.brochure-btn {
    background-color: transparent;
    border: 1px solid #004D49;
    color: #004D49;
}

.brochure-btn:hover {
    background-color: #004D49;
    color: white;
}

.plywood-image-box {
    flex: 1;
    max-width: 400px;
    overflow: hidden;
    position: relative;
    padding: 10px;
    text-align: center;
    border: 2px solid #f1f1f1 !important;
}

.plywood-image {
    max-width: 80%;
    height: auto;
    border-radius: 11px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 30px auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    width: calc(100% * totalSlides); /* dinamik olmalı */
    /* Assuming 2 images */
}

.slider-item {
    flex: 0 0 100%;
    /* Each slide takes 50% of the container */
    padding: 10px;
}


/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 43%;
    transform: translateY(-50%);
    background: transparent;
    color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 32px;
    border-radius: 25%;
    transition: background 0.3s ease;
    z-index: -1
}

.prev {
    left: 0px;
}

.next {
    right: 0px;
}

.plywood-caption {
    color: #fff;
    background: #004D49;
    padding: 5px;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 30px;
}

.titleBottom {
    border: 2px solid #004D49;
    margin-top: -25px;
    margin-bottom: 25px;
}

@media (max-width: 1024px) {
    .plywood-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .plywood-content,
    .plywood-image-box {
        max-width: 100%;
    }

    .plywood-title {
        font-size: 24px;
    }

    .plywood-subtitle {
        font-size: 14px;
        text-align: justify !important;
    }

    .plywood-desc {
        font-size: 13px;
        text-align: justify !important;
    }

    .plywood-features li {
        font-size: 13px;
    }

    .plywood-buttons {
        display: flex;
        justify-content: center;
    }

    .plywood-image {
        max-width: 100%;
    }

    .slider-wrapper {
        width: 300%;
        /* Slider genişliği dinamik hale getirildi */
    }

    .slider-item {
        flex: 0 0 100%;
        /* Tek görünümlü resim kaydırma */
    }

    .slider-btn {
        font-size: 24px;
        padding: 5px;
    }

    .titleBottom {
        margin-top: 5px;
    }

    .slider-item {
        flex: 0 0 33.33%;
    }

    .plywood-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .plywood-title {
        font-size: 20px;
    }

    .plywood-subtitle {
        font-size: 13px;
        text-align: justify !important;
    }

    .plywood-desc {
        font-size: 12px;
        text-align: justify !important;
    }

    .plywood-features li {
        font-size: 12px;
    }

    .btn {
        padding: 10px 30px;
        font-size: 11px;
    }

    .plywood-caption {
        font-size: 14px;
    }

    .titleBottom {
        margin-top: 5px;
    }

    .slider-item {
        flex: 0 0 33.33%;
    }

    .plywood-image {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .plywood-title {
        font-size: 18px;
    }

    .plywood-subtitle {
        font-size: 12px;
        text-align: justify !important;
    }

    .plywood-desc {
        font-size: 11px;
        text-align: justify !important;
    }

    .plywood-features li {
        font-size: 11px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 10px;
    }

    .slider-btn {
        font-size: 18px;
        padding: 3px;
    }

    .titleBottom {
        margin-top: 5px;
    }

    .plywood-features li::before {
        content: "•";
        position: absolute;
        left: 100px;
        color: #004D49;
        font-size: 16px;
    }

    .slider-item {
        flex: 0 0 33.33%;
    }

    .plywood-image {
        max-width: 90%;
    }
}

.accordion-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    min-height: 45vh;
    height: auto;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.accordion-container {
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.tabs {
    list-style: none;
    display: flex;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 14px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    font-size: 16px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.tab:hover {
    background-color: #e0f7f1;
}

.tab.active {
    color: #004D49;
    border-bottom: 3px solid #004D49;
    background-color: #e0f7f5;
}

.tab::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background-color: #004D49;
    transition: width 0.3s ease;
}

.tab.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 0px;
    border-radius: 8px;
}

.tab-content.active {
    display: block;
}

.accordion-header {
    background: #004D49;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 2px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header:hover {
    background-color: #006F67;
}

.accordion-content {
    padding: 0px 0px;
    border-left: 4px solid #004D49;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    opacity: 1;
    height: auto;
    padding-top: 15px;
    padding-left: 20px;
}

.accordion-item {
    margin-bottom: 15px;
}

.arrow {
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.accordion-content li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.7;
}

.content-div {
    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.content-div ul {
    list-style-type: circle;
}

.content-div li {
    font-size: 16px;
    font-weight: 600;
    color: #555;
}

@media screen and (max-width: 768px) {
    .accordion-section {
        padding: 50px 0;
    }

    .accordion-container {
        width: 95%;
    }

    .tab {
        font-size: 14px;
        padding: 12px 18px;
    }

    .accordion-header {
        font-size: 16px;
        padding: 14px;
    }

    .accordion-content {
        padding: 15px;
    }

    .content-div {
        padding: 15px;
    }
}

