.categorySecond-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.categorySecond-hero {
    background: #fff;
    padding: 60px 20px;
    margin-bottom: 60px;
    border-radius: 10px;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.categorySecond-hero-text {
    flex: 1;
}

.categorySecond-title {
    font-size: 3em;
    color: #595858;
    margin-bottom: 20px;
    animation: categorySecond-slideDown 0.8s ease-out;
    line-height: 1.2;
}

.categorySecond-subtitle {
    font-size: 1.5em;
    color: #595858;
    margin-bottom: 0;
    animation: categorySecond-slideDown 1s ease-out;
    line-height: 1.6;
}

.categorySecond-hero-image {
    flex: 1;
    animation: categorySecond-fadeInUp 1.2s ease-out;
}

.categorySecond-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.categorySecond-hero-image img:hover {
    transform: scale(1.02);
}

/* Section Titles */
.categorySecond-section-title {
    font-size: 2.5em;
    color: #595858;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 3px solid #ca0e0e;
    animation: categorySecond-fadeIn 1s ease-in;
}

/* Features Section */
.categorySecond-features {
    margin-bottom: 80px;
}

.categorySecond-features-list {
    margin-top: 40px;
}

.categorySecond-feature-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-feature-reverse {
    flex-direction: row-reverse;
}

.categorySecond-feature-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.categorySecond-feature-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.categorySecond-feature-item:hover .categorySecond-feature-image img {
    transform: scale(1.05);
}

.categorySecond-feature-content {
    flex: 1;
}

.categorySecond-feature-title {
    font-size: 2em;
    color: #ca0e0e;
    margin-bottom: 20px;
}

.categorySecond-feature-text {
    color: #595858;
    line-height: 1.8;
    font-size: 1.1em;
}

/* Products Section */
.categorySecond-products {
    margin-bottom: 80px;
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.categorySecond-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.categorySecond-product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(202, 14, 14, 0.3);
}

.categorySecond-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.categorySecond-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.categorySecond-product-item:hover .categorySecond-product-image img {
    transform: scale(1.1);
}

.categorySecond-product-title {
    font-size: 1.8em;
    color: #ca0e0e;
    padding: 20px 25px 10px;
    margin: 0;
}

.categorySecond-product-description {
    color: #595858;
    padding: 0 25px 20px;
    line-height: 1.8;
}

.categorySecond-product-list {
    list-style: none;
    padding: 0 25px 25px;
}

.categorySecond-product-list li {
    color: #595858;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.categorySecond-product-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ca0e0e;
    font-weight: bold;
}

/* Applications Section */
.categorySecond-applications {
    margin-bottom: 80px;
}

.categorySecond-applications-content {
    margin-top: 40px;
}

.categorySecond-application-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-application-reverse {
    flex-direction: row-reverse;
}

.categorySecond-application-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.categorySecond-application-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.categorySecond-application-block:hover .categorySecond-application-image img {
    transform: scale(1.05);
}

.categorySecond-application-text {
    flex: 1;
}

.categorySecond-application-title {
    font-size: 2em;
    color: #ca0e0e;
    margin-bottom: 20px;
}

.categorySecond-application-description {
    color: #595858;
    line-height: 1.8;
    font-size: 1.1em;
}

/* Specifications Section */
.categorySecond-specifications {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #eafeff 0%, #fff 100%);
    padding: 60px 20px;
    border-radius: 10px;
}

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

.categorySecond-spec-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(202, 14, 14, 0.25);
}

.categorySecond-spec-icon {
    margin-bottom: 20px;
    animation: categorySecond-pulse 2s infinite;
}

.categorySecond-spec-icon img {
    width: 100px;
    height: 100px;
    border-radius: 0;
}

.categorySecond-spec-title {
    font-size: 1.3em;
    color: #595858;
    margin-bottom: 10px;
}

.categorySecond-spec-value {
    font-size: 1.8em;
    color: #ca0e0e;
    font-weight: bold;
    margin-bottom: 15px;
}

.categorySecond-spec-description {
    color: #595858;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Advantages Section */
.categorySecond-advantages {
    margin-bottom: 80px;
}

.categorySecond-advantages-text {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.categorySecond-advantage-title {
    font-size: 1.8em;
    color: #ca0e0e;
    margin-bottom: 20px;
    margin-top: 40px;
}

.categorySecond-advantage-title:first-child {
    margin-top: 0;
}

.categorySecond-advantage-text {
    color: #595858;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Installation Section */
.categorySecond-installation {
    margin-bottom: 80px;
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.categorySecond-installation-steps {
    margin-top: 40px;
}

.categorySecond-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-step:nth-child(even) {
    flex-direction: row-reverse;
}

.categorySecond-step-image {
    flex: 0 0 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.categorySecond-step-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.categorySecond-step:hover .categorySecond-step-image img {
    transform: scale(1.1);
}

.categorySecond-step-content {
    flex: 1;
}

.categorySecond-step-title {
    font-size: 1.8em;
    color: #ca0e0e;
    margin-bottom: 15px;
}

.categorySecond-step-text {
    color: #595858;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Quality Section */
.categorySecond-quality {
    margin-bottom: 80px;
}

.categorySecond-quality-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-quality-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.categorySecond-quality-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.categorySecond-quality-content:hover .categorySecond-quality-image img {
    transform: scale(1.05);
}

.categorySecond-quality-text {
    flex: 1;
}

.categorySecond-quality-description {
    color: #595858;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.categorySecond-certificates {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.categorySecond-certificate {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.categorySecond-certificate:hover {
    transform: scale(1.1);
}

.categorySecond-certificate img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.categorySecond-faq {
    margin-bottom: 80px;
    background: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.categorySecond-faq-content {
    margin-top: 40px;
}

.categorySecond-faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(202, 14, 14, 0.2);
    border-left: 5px solid #ca0e0e;
}

.categorySecond-faq-question {
    font-size: 1.5em;
    color: #ca0e0e;
    margin-bottom: 15px;
}

.categorySecond-faq-answer {
    color: #595858;
    line-height: 1.8;
    font-size: 1.05em;
}

/* Additional Info Section */
.categorySecond-additional {
    margin-bottom: 80px;
}

.categorySecond-additional-content {
    margin-top: 40px;
}

.categorySecond-info-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-info-reverse {
    flex-direction: row-reverse;
}

.categorySecond-info-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.categorySecond-info-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.categorySecond-info-block:hover .categorySecond-info-image img {
    transform: scale(1.05);
}

.categorySecond-info-text {
    flex: 1;
}

.categorySecond-info-title {
    font-size: 2em;
    color: #ca0e0e;
    margin-bottom: 20px;
}

.categorySecond-info-description {
    color: #595858;
    line-height: 1.8;
    font-size: 1.1em;
}

/* CTA Section */
.categorySecond-cta {
    background: linear-gradient(135deg, #ca0e0e 0%, #595858 100%);
    padding: 60px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    animation: categorySecond-fadeIn 1s ease-in;
}

.categorySecond-cta-content {
    text-align: center;
    color: #fff;
}

.categorySecond-cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: categorySecond-pulse 2s infinite;
    color: #fff;
}

.categorySecond-cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.8;
}

.categorySecond-cta-image {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #fff;
    color: #ca0e0e;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
}

.categorySecond-cta-image:hover {
    background-color: #eafeff;
    color: #595858;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes categorySecond-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes categorySecond-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes categorySecond-slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes categorySecond-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes categorySecond-pulse {

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .categorySecond-hero-content {
        flex-direction: column;
    }

    .categorySecond-title {
        font-size: 2em;
    }

    .categorySecond-section-title {
        font-size: 2em;
    }

    .categorySecond-feature-item,
    .categorySecond-feature-reverse {
        flex-direction: column;
    }

    .categorySecond-products-grid,
    .categorySecond-specs-grid {
        grid-template-columns: 1fr;
    }

    .categorySecond-application-block,
    .categorySecond-application-reverse {
        flex-direction: column;
    }

    .categorySecond-step,
    .categorySecond-step:nth-child(even) {
        flex-direction: column;
    }

    .categorySecond-quality-content {
        flex-direction: column;
    }

    .categorySecond-step-image {
        flex: 1 1 100%;
    }

    .categorySecond-info-block,
    .categorySecond-info-reverse {
        flex-direction: column;
    }
}