.about-product {
    max-width: 1100px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.about-product-container {
    scroll-margin-top: 80px;
}

.product-content h1 {
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 600;
}

.dark-theme .subititle {
    color: var(--stone-400);
}

.dark-theme .about-product {
    color: white;
}

.dark-theme .accordion-header {
    background-color: var(--stone-700);
    color: white;
}

.dark-theme .accordion-content {
    color: white;
}

.about-product-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-product-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.subititle {
    color: var(--stone-500);
    margin-bottom: 24px;
    font-size: 16px;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-btn {
    background-color: var(--brand);
    color: white;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
}

.download-btn:hover {
    background-color: var(--brand-dark);
}

.product-accordion {
    border: 1px solid var(--brand-border);
    border-radius: 4px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--stone-200);
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 16px;
    font-weight: 500;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 16px;
    line-height: 1.6;
    color: var(--stone-700);
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    font-size: 16px;
}

@media (max-width: 850px) {
    .about-product {
        flex-direction: column;
        padding: 20px;
        max-width: 80%;
    }
    .about-product-container {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    .product-content {
        width: 80%;
        padding: 0;
    }
}
