.firstCategory-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
}

.firstCategory-header {
    background-image: url("https://st48.stpulscen.ru/images/product/503/006/565_original.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.firstCategory-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    z-index: 1;
}

@keyframes firstCategory-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.firstCategory-header h1 {
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 3em;
}

.firstCategory-header-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.2em;
    margin-bottom: 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.firstCategory-header h2 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 2em;
}

.firstCategory-header-description {
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.firstCategory-header .firstCategory-cta-button {
    position: relative;
    z-index: 2;
}


.firstCategory-cta-button {
    background-color: #ca0e0e;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.firstCategory-cta-button:hover {
    background-color: #000;
    transform: scale(1.05);
}

.firstCategory-products {
    margin: 50px 0;
}

.firstCategory-section-title {
    text-align: center;
    color: #ca0e0e;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.firstCategory-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ca0e0e;
}

.firstCategory-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.firstCategory-product-card {
    background-color: #fff;
    border: 3px solid #595858;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.firstCategory-product-card:hover {
    transform: scale(1.05);
    border-color: #ca0e0e;
    box-shadow: 0 15px 35px rgba(202, 14, 14, 0.4);
}

.firstCategory-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.firstCategory-product-info {
    padding: 25px;
}

.firstCategory-product-title {
    color: #ca0e0e;
    margin-bottom: 15px;
    font-weight: bold;
}

.firstCategory-product-description {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.8;
}

.firstCategory-product-price {
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
}

.firstCategory-product-button {
    background-color: #ca0e0e;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.firstCategory-product-button:hover {
    background-color: #000;
}

.firstCategory-info-block {
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 10px;
    background-color: transparent;
}

.firstCategory-info-content {
    max-width: 1000px;
    margin: 0 auto;
}

.firstCategory-info-text {
    color: #000;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 30px;
}

.firstCategory-info-text p {
    margin-bottom: 25px;
    text-align: justify;
}

.firstCategory-info-text p:last-child {
    margin-bottom: 0;
}

.firstCategory-advantages {
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.firstCategory-advantages-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.firstCategory-advantage-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #ca0e0e;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.firstCategory-advantage-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(202, 14, 14, 0.3);
}

.firstCategory-advantage-item h4 {
    color: #ca0e0e;
    margin-bottom: 10px;
}

.firstCategory-advantage-item p {
    color: #000;
}


.firstCategory-testimonials {
    background-color: #595858;
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.firstCategory-testimonials h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.firstCategory-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.firstCategory-testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid #ca0e0e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.firstCategory-testimonial-text {
    color: #000;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.firstCategory-testimonial-author {
    color: #ca0e0e;
    font-weight: bold;
}

.firstCategory-contact {
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 10px;
    text-align: center;
}

.firstCategory-contact h2 {
    color: #ca0e0e;
    margin-bottom: 30px;
}

.firstCategory-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.firstCategory-contact-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.firstCategory-contact-item h3 {
    color: #ca0e0e;
    margin-bottom: 15px;
}

.firstCategory-contact-item p {
    color: #000;
}

.firstCategory-contact-item p a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.firstCategory-contact-item p a:hover {
    color: #ca0e0e;
    text-decoration: underline;
}

.firstCategory-pulse {
    animation: firstCategory-pulse 2s infinite;
}

@keyframes firstCategory-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


.firstCategory-slide-in {
    transform: translateX(-100px);
    /* opacity: 0; */
}

.firstCategory-bounce {
    animation: firstCategory-bounce 1s ease-in-out;
}

@keyframes firstCategory-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.firstCategory-faq {
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.firstCategory-faq h2 {
    text-align: center;
    color: #ca0e0e;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 20px;
}

.firstCategory-faq h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #ca0e0e;
}

.firstCategory-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.firstCategory-faq-item {
    background-color: #fff;
    border: 2px solid #595858;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.firstCategory-faq-item:hover {
    border-color: #ca0e0e;
    box-shadow: 0 5px 15px rgba(202, 14, 14, 0.2);
}

.firstCategory-faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    transition: all 0.3s;
}

.firstCategory-faq-question:hover {
    background-color: #f9f9f9;
}

.firstCategory-faq-question h3 {
    color: #ca0e0e;
    margin: 0;
    flex: 1;
    text-align: left;
}

.firstCategory-faq-icon {
    color: #ca0e0e;
    transition: transform 0.3s;
    margin-left: 20px;
}

.firstCategory-faq-item.active .firstCategory-faq-icon {
    transform: rotate(180deg);
}

.firstCategory-faq-answer {
    display: none;
    padding: 25px;
}

.firstCategory-faq-answer p {
    color: #000;
    line-height: 1.8;
    margin: 0;
}

.firstCategory-specifications {
    padding: 50px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

.firstCategory-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.firstCategory-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    min-width: 800px;
}

.firstCategory-specs-table thead {
    background: linear-gradient(135deg, #ca0e0e 0%, #000 100%);
    color: #fff;
}

.firstCategory-specs-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.firstCategory-specs-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.firstCategory-specs-table tbody tr:hover {
    background-color: #f9f9f9;
    transform: scale(1.01);
}

.firstCategory-specs-table tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

.firstCategory-specs-table tbody tr:nth-child(even):hover {
    background-color: #f0f0f0;
}

.firstCategory-specs-table td {
    padding: 15px;
    color: #000;
    border: 1px solid #e0e0e0;
}

.firstCategory-specs-table td strong {
    color: #ca0e0e;
    font-size: 16px;
}

.firstCategory-specs-table tbody tr:last-child {
    border-bottom: none;
}