.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF3E6;
    background: #0D0E12;
    padding-bottom: 50px;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-about__section {
    padding: 50px 0;
}

.page-about__section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FF8C1A;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-about__section-description {
    font-size: 18px;
    color: #FFF3E6;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 40px auto;
}

.page-about__hero-section {
    padding-top: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    color: #FFF3E6;
    background: linear-gradient(180deg, #17191F 0%, #0D0E12 100%);
}

.page-about__hero-image-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-about__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    margin-top: -150px;
    margin-bottom: 50px;
}

.page-about__main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #FFB04D;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

.page-about__description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #FFF3E6;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 145, 0, 0.4);
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 145, 0, 0.6);
}

.page-about__btn-secondary {
    background: #17191F;
    color: #FF8C1A;
    border: 2px solid #A84F0C;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__btn-secondary:hover {
    background: #0D0E12;
    color: #FFB04D;
    border-color: #FFB04D;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-about__btn-link {
    background: transparent;
    color: #FF8C1A;
    border: 1px solid #FF8C1A;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
}

.page-about__btn-link:hover {
    background: #FF8C1A;
    color: #FFF3E6;
}

.page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-about__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-about__text-block {
    flex: 1;
    font-size: 17px;
    color: #FFF3E6;
}

.page-about__text-block h3 {
    font-size: 24px;
    color: #FF8C1A;
    margin-bottom: 15px;
}

.page-about__text-block p strong {
    color: #FFB04D;
}

.page-about__image-block {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.page-about__image-block img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-about__products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.page-about__product-card {
    background: #17191F;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 25px;
    border: 1px solid #A84F0C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-about__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-about__product-title {
    font-size: 22px;
    color: #FFB04D;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-about__product-text {
    font-size: 15px;
    color: #FFF3E6;
    padding: 0 15px;
    margin-bottom: 20px;
}

details.page-about__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C;
  overflow: hidden;
  background: #17191F;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
details.page-about__faq-item summary.page-about__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF3E6;
}
details.page-about__faq-item summary.page-about__faq-question::-webkit-details-marker {
  display: none;
}
details.page-about__faq-item summary.page-about__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}
.page-about__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFB04D;
}
.page-about__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFA53A;
  flex-shrink: 0;
  margin-left: 20px;
  width: 32px;
  text-align: center;
}
details.page-about__faq-item .page-about__faq-answer {
  padding: 0 25px 25px;
  background: #0D0E12;
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
  font-size: 16px;
}
details.page-about__faq-item .page-about__faq-answer p {
    margin: 0;
}

.page-about__section--cta {
    background: #17191F;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #A84F0C;
}

.page-about__container--center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__section-title--cta {
    color: #FFB04D;
    margin-bottom: 20px;
}

.page-about__description--cta {
    max-width: 700px;
    font-size: 18px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .page-about__section-title {
        font-size: 32px;
    }
    .page-about__hero-content {
        margin-top: -100px;
    }
    .page-about__products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-about__product-image {
        height: 180px;
    }
    .page-about__product-title {
        font-size: 20px;
    }
    .page-about__product-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .page-about__container,
    .page-about__section,
    .page-about__product-card,
    .page-about__content-grid,
    .page-about__products-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__section {
        padding: 30px 0;
    }
    .page-about__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .page-about__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-about__hero-section {
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .page-about__hero-image-wrapper {
        padding-bottom: 75%;
        margin-bottom: 20px;
    }
    .page-about__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        width: 100% !important;
        height: 100% !important;
        position: static;
        border-radius: 0;
        box-shadow: none;
    }
    .page-about__hero-content {
        padding: 0 15px;
        margin-top: 0;
        margin-bottom: 0;
    }
    .page-about__main-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 15px;
    }
    .page-about__description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-about__content-grid,
    .page-about__content-grid--reverse {
        flex-direction: column;
        gap: 30px;
    }
    .page-about__image-block {
        max-width: 100%;
        min-width: unset;
    }
    .page-about__image-block img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-shadow: none;
    }
    .page-about__text-block {
        font-size: 16px;
    }
    .page-about__text-block h3 {
        font-size: 22px;
    }

    .page-about__products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        overflow-x: hidden;
    }
    .page-about__product-card {
        padding-bottom: 20px;
        box-shadow: none;
    }
    .page-about__product-image {
        height: 160px;
        margin-bottom: 15px;
    }
    .page-about__product-title {
        font-size: 18px;
    }
    .page-about__product-text {
        font-size: 14px;
        margin-bottom: 15px;
    }

    details.page-about__faq-item summary.page-about__faq-question {
        padding: 15px 20px;
    }
    .page-about__faq-qtext {
        font-size: 16px;
    }
    .page-about__faq-toggle {
        font-size: 24px;
        margin-left: 15px;
        width: 28px;
    }
    details.page-about__faq-item .page-about__faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .page-about__section--cta {
        padding: 40px 0;
    }
    .page-about__section-title--cta {
        font-size: 26px;
    }
    .page-about__description--cta {
        font-size: 16px;
    }
}

.page-about img {
    min-width: 200px;
    min-height: 200px;
}

.page-about__product-image {
    min-width: unset;
    min-height: unset;
}
.page-about img {
    filter: none !important;
}