.second-main {
    width: 100%;
    overflow-x: hidden;
}

.second-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.second-hero {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.second-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}


.second-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: second-fadeInUp 1s ease-out;
}

.second-hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #16242e;
    margin-bottom: 20px;
    text-shadow: none;
    animation: second-slideInLeft 1s ease-out, second-heroTitlePulse 3s ease-in-out infinite;
    animation-delay: 0s, 1s;
}

.second-hero-subtitle {
    font-size: 24px;
    color: #252525;
    margin-bottom: 40px;
    text-shadow: none;
    animation: second-slideInRight 1s ease-out, second-heroSubtitleFloat 4s ease-in-out infinite;
    animation-delay: 0s, 1.5s;
}

.second-hero-image-wrapper {
    margin: 40px 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: second-zoomIn 1.5s ease-out, second-heroImageFloat 6s ease-in-out infinite;
    animation-delay: 0s, 2s;
    position: relative;
    height: 400px;
}

.second-hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: second-heroImageShine 3s ease-in-out infinite;
    z-index: 2;
}

.second-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.second-hero-image-1 {
    opacity: 1;
    animation: second-heroImageFade 6s ease-in-out infinite;
    animation-delay: 0s;
}

.second-hero-image-2 {
    animation: second-heroImageFade 6s ease-in-out infinite;
    animation-delay: 3s;
}

.second-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    animation: second-fadeIn 1.5s ease-out, second-heroCtaBounce 2s ease-in-out infinite;
    animation-delay: 0s, 2s;
}

/* Buttons */
.second-button {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.second-button-primary {
    background-color: #69cd72;
    color: #fff;
}

.second-button-primary:hover {
    background-color: #5ab863;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(105, 205, 114, 0.4);
}

.second-button-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Features Section */
.second-features {
    padding: 80px 0;
    background-color: #fff;
}

.second-section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #16242e;
    position: relative;
    padding-bottom: 20px;
    animation: second-featureTitleSlide 1s ease-out;
}

.second-section-title::after {
    display: none;
}

.second-features-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.second-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: second-featureItemSlide 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
}

.second-feature-toggle {
    display: none;
}

.second-feature-item:nth-child(1) {
    animation-delay: 0.2s;
}

.second-feature-item:nth-child(2) {
    animation-delay: 0.4s;
}

.second-feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.second-feature-item-reverse {
    direction: rtl;
    animation-name: second-featureItemSlideReverse;
}

.second-feature-item-reverse>* {
    direction: ltr;
}

.second-feature-item-reverse .second-feature-item-content {
    right: auto;
    left: 0;
    transform: translateX(-100%);
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

.second-feature-item-reverse .second-feature-toggle:checked~.second-feature-item-content {
    transform: translateX(0);
}

.second-feature-item-image {
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    animation: second-featureImageZoom 1.2s ease-out;
    cursor: pointer;
    z-index: 2;
}

.second-feature-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.3), transparent);
    animation: second-featureImageShine 3s infinite;
    z-index: 1;
    pointer-events: none;
}

.second-feature-item:hover .second-feature-item-image {
    transform: translateY(-5px);
}

.second-feature-item-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.second-feature-item:hover .second-feature-item-img {
    transform: scale(1.05);
}

.second-feature-item-content {
    padding: 20px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc(50% - 20px);
    background-color: #fff;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.second-feature-toggle:checked~.second-feature-item-content {
    transform: translateX(0);
}

.second-feature-item-title {
    font-size: 28px;
    color: #16242e;
    margin-bottom: 20px;
    font-weight: bold;
    animation: second-featureTitleFade 1s ease-out;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.second-feature-item-text {
    color: #898989;
    line-height: 1.8;
    font-size: 16px;
    animation: second-featureTextFade 1s ease-out;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Products Section */
.second-products {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.second-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.second-product-card {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: second-fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
}

.second-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.second-product-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.second-product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.second-product-card:hover .second-product-card-img {
    transform: scale(1.1);
}

.second-product-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.second-product-card-title {
    font-size: 26px;
    color: #16242e;
    margin-bottom: 15px;
    font-weight: bold;
}

.second-product-card-description {
    color: #898989;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    font-size: 15px;
}

.second-product-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f8f9fa;
}

.second-product-spec-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.second-product-spec-label {
    font-size: 12px;
    color: #898989;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.second-product-spec-value {
    font-size: 16px;
    color: #16242e;
    font-weight: bold;
}

/* Additional Information Section */
.second-additional-info {
    padding: 80px 0;
    background-color: #fff;
}

.second-additional-content {
    max-width: 1200px;
    margin: 0 auto;
}

.second-additional-text {
    margin-top: 40px;
}

.second-additional-text p {
    color: #252525;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.second-additional-text p:first-child {
    margin-top: 0;
}

.second-additional-text p:last-child {
    margin-bottom: 0;
}

.second-additional-text-hidden {
    display: none;
}

.second-read-more-toggle {
    display: none;
}

.second-read-more-toggle:checked~.second-additional-text-hidden {
    display: block;
}

.second-read-more-wrapper-hide {
    display: none;
}

.second-read-more-toggle:checked~.second-read-more-btn-show {
    display: none;
}

.second-read-more-toggle:checked~.second-additional-text-hidden {
    display: block;
}

.second-read-more-toggle:checked~.second-additional-text-hidden .second-read-more-wrapper-hide {
    display: block;
}

.second-read-more-wrapper {
    text-align: center;
    margin: 30px 0;
}

.second-read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    border: 2px solid #3498db;
    border-radius: 5px;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.second-read-more-btn::after {
    content: "";
}

.second-read-more-btn:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Applications Section */
.second-applications {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.second-applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.second-application-item {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: second-fadeInUp 0.8s ease-out;
}

.second-application-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.second-application-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.second-application-item:hover .second-application-image {
    transform: scale(1.1);
}

.second-application-title {
    font-size: 22px;
    color: #16242e;
    margin: 20px;
    margin-bottom: 15px;
}

.second-application-text {
    color: #898989;
    margin: 0 20px 20px;
    line-height: 1.8;
}

/* Specifications Section */
.second-specifications {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.second-specs-content {
    width: 100%;
}

.second-specs-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.second-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.second-specs-table thead {
    background-color: #16242e;
    color: #fff;
}

.second-specs-table th {
    padding: 15px;
    text-align: left;
    font-weight: bold;
}

.second-specs-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    color: #252525;
}

.second-specs-table tbody tr:hover {
    background-color: #f8f9fa;
}

.second-specs-table tbody tr:last-child td {
    border-bottom: none;
}

/* Benefits Section */
.second-benefits {
    padding: 80px 0;
    background-color: #fff;
}

.second-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.second-benefit-item {
    text-align: center;
    padding: 20px;
    background-color: transparent;
    transition: all 0.3s ease;
    animation: second-fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.second-benefit-toggle {
    display: none;
}

.second-benefit-image-label {
    display: block;
    cursor: pointer;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.second-benefit-image-label:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.second-benefit-toggle:checked+.second-benefit-image-label {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.second-benefit-icon {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.second-benefit-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, margin 0.5s ease-out;
    width: 100%;
    padding: 0;
    margin: 0;
}

.second-benefit-toggle:checked~.second-benefit-content {
    max-height: 1000px;
    padding: 20px 0 0 0;
    margin-top: 20px;
}

.second-benefit-title {
    font-size: 24px;
    color: #16242e;
    margin-bottom: 15px;
    text-align: center;
}

.second-benefit-text {
    color: #898989;
    line-height: 1.8;
    text-align: center;
}

/* FAQ Section */
.second-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.second-faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.second-faq-item {
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.second-faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.second-faq-toggle {
    display: none;
}

.second-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #fff;
    transition: background-color 0.3s ease;
    user-select: none;
}

.second-faq-question:hover {
    background-color: #f8f9fa;
}

.second-faq-question-text {
    font-size: 18px;
    font-weight: bold;
    color: #16242e;
    flex: 1;
    text-align: left;
}

.second-faq-icon {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.second-faq-toggle:checked+.second-faq-question .second-faq-icon {
    transform: rotate(45deg);
    background-color: #3498db;
    color: #fff;
}

.second-faq-toggle:checked+.second-faq-question {
    background-color: #f8f9fa;
    border-bottom: 2px solid #3498db;
}

.second-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding: 0 25px;
}

.second-faq-toggle:checked~.second-faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px 25px;
}

.second-faq-answer p {
    color: #898989;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* CTA Section */
.second-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #16242e 0%, #3498db 100%);
    position: relative;
    overflow: hidden;
}

.second-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.second-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: second-fadeIn 1s ease-out;
}

.second-cta-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.second-cta-text {
    font-size: 18px;
    color: #fff;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.second-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.second-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background-color: #69cd72;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(105, 205, 114, 0.3);
}

.second-cta-link:hover {
    background-color: #5ab863;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(105, 205, 114, 0.4);
}

.second-cta-link-email {
    background-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.second-cta-link-email:hover {
    background-color: #2980b9;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.second-cta-link-text {
    white-space: nowrap;
}

/* Animations */
@keyframes second-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes second-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes second-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes second-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes second-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes second-zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hero Section Animations */
@keyframes second-heroGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes second-heroOverlay {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 0.5;
    }
}


@keyframes second-heroTitlePulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: none;
    }

    50% {
        transform: scale(1.03);
        text-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
    }
}

@keyframes second-heroSubtitleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes second-heroImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes second-heroImageShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes second-heroImageFade {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes second-heroCtaBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Features Section Animations */
@keyframes second-featureTitleSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes second-featureItemSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes second-featureItemSlideReverse {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes second-featureImageZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes second-featureImageShine {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes second-featureTitleFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes second-featureTextFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .second-hero-title {
        font-size: 32px;
    }

    .second-hero-subtitle {
        font-size: 18px;
    }

    .second-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .second-product-type {
        grid-template-columns: 1fr;
    }

    .second-product-reverse {
        direction: ltr;
    }


    .second-faq-question-text {
        font-size: 16px;
    }

    .second-faq-answer p {
        font-size: 14px;
    }

    .second-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .second-section-title {
        font-size: 28px;
    }
}