.information-center-page {
    padding: 40px 0 0;
}
body h1.title {
    font-size: 28px;
    line-height: 34px;
    color: #17181A;
    font-weight: 600;
}
body .container {
    max-width: 1400px;
}
body section {
    padding: 0;
    margin: 40px 0;
}
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.action-buttons .btn {
    margin: 0;
}
.software-and-manuals .btn:hover, 
.faq-section .btn:hover {
    border: 1px solid var(--primary);
}

.software-and-manuals-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.software-and-manuals-block {
    padding: 40px;
    background-color: var(--primary-light);
    border-radius: 24px;
    width: calc(50% - 10px);
    text-align: center;
}
h1.title {
    text-align: center;
}
.software-and-manuals-block .icon-block {
    display: flex;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-inline: auto;
    align-items: center;
}
h3.title {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    color: #17181A;
}
.software-and-manuals-block h3.title  {
    margin: 10px 0 6px;
}
.software-and-manuals .action-buttons {
    justify-content: center;
}
/**/
.heading-block h2.title {
    margin: 18px 0 12px;
}
.heading-block h4.subtitle {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f3f3f3;
    border-radius: 8px;
    font-size: 15px;
    color: #17181A;
    border: 1px solid #d4d4d4;
}
/**/
.image-with-text_inner {
    display: flex;
    gap: 50px;
    align-items: center;
    border: 6px solid var(--primary-light);
    padding: 40px;
    border-radius: 24px;
}
.image-with-text_inner .image-block {
    width: 50%;
    position: relative;
}
.image-with-text_inner .content-block {
    width: 50%;
}
.image-with-text_inner .image-block img {
    width: 100%;
    height: auto;
    border-radius: 18px;
}
.image-with-text_inner .image-block .play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.row-reverse .image-with-text_inner {
    flex-direction: row-reverse;
}
/**/
.faq-section .heading-block h4.subtitle {
    background-color: #f8f8f8;
}
.faq-section-inner {
    display: flex;
    gap: 32px;
    padding: 40px;
    background-color: #f3f3f3;
    border-radius: 24px;
    flex-direction: column;
}
.faq-section-inner .faq-content, .faq-section-inner .faq-accordion {
    width: 100%;
}
.faq-section-inner .faq-content {
    width: 100%;
    text-align: center;
}
.faq-accordion details {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}
.faq-accordion details:last-child, .ctn-info p:last-child {
    margin-bottom: 0;
}
.faq-section-inner .action-buttons {
    margin-top: 0;
    justify-content: center;
}
.faq-section .heading-block h2.title {
    margin-bottom: 0;
}
/**/
details {
	cursor: pointer;
	margin-inline: auto;
	width: 75%;
	
	&::details-content {
		height: 0;
  	interpolate-size: allow-keywords;
		opacity: 0;
		overflow: hidden;
		transition: height 0.5s ease-in-out,
					content-visibility 0.5s ease-in-out,
					opacity 0.5s ease-in-out,
					scale 0.5s ease-in-out;
		transition-behavior: allow-discrete;
	}
	&[open] > summary {
		color: #ffffff;
	}
	&[open] > summary:after {
		transform: rotate(45deg);
	}
	&[open]::details-content {
		height: auto;
		opacity: 1;
	}
}
summary {
	background-color: black;
	border-top: 1px solid white;
	color: white;
	list-style: none;
	padding: 1rem;
	position: relative;
	transition: color 0.5s ease-in-out;
	
	&:after {
		border-radius: 50%;
		content: '+';
		color: #636363;
		font-size: 1.75rem;
		height: 1.5rem;
		line-height: 1.5rem;
		position: absolute;
		right: 10px;
		text-align: center;
		transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out;
		width: 1.5rem;
        transform-origin: center center;
	}
}
.ctn-info {
    background-color: var(--primary-light);
    padding: 1rem;
    border-top: 1px solid #e1e1e1;
}
.faq-accordion details summary {
    padding: 12px 16px;
    background-color: #ffffff;
    font-size: 18px;
    color: #17181A;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ctn-info a {
    text-decoration: underline;
}
/**/
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.video-popup-box {
    position: relative;
    background: #000;
    padding: 10px;
    border-radius: 10px;
    width: 1100px;
}
.close-popup {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    color: #000;
    font-size: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}
.video-popup-box iframe {
    width: 1080px;
    height: 600px;
}

@media (max-width: 1023px) {
    body h2.title, body h1.title {
        font-size: 24px;
        line-height: 30px;
    }
    .video-popup-box {
        width: 740px;
    }
    .video-popup-box iframe {
        width: 720px;
        height: 420px;
    }
}

@media (max-width: 767px) {
    .action-buttons .btn {
        height: 50px;
        line-height: 50px;
        padding: 0 25px;
    }
    body section {
        margin: 40px 0;
    }
    .heading-block h4.subtitle {
        font-size: 13px;
        padding: 4px 8px;
    }
    .heading-block h2.title {
        margin: 14px 0 10px;
        font-size: 24px;
        line-height: 30px;
    }
    .image-with-text_inner {
        flex-wrap: wrap;
        border: 0;
        padding: 0;
        border-radius: 0;
        gap: 24px;
    }
    .image-with-text_inner .image-block {
        width: 100%;
    }
    .play-icon svg {
        width: 56px;
        height: 56px;
    }
    .image-with-text_inner .content-block {
        width: 100%;
    }
    .faq-section-inner {
        padding: 24px;
    }
    .faq-accordion details summary {
        font-size: 16px;
    }
    .ctn-info p {
        font-size: 15px;
    }
    .software-and-manuals-block {
        padding: 24px;
        width: 100%;
    }
    .video-popup-box {
        width: 90%;
    }
    .video-popup-box iframe {
        width: 100%;
        height: inherit;
        aspect-ratio: 16 / 9;
    }
}
@media (max-width: 479px) {
    .faq-section-inner {
        padding: 24px 16px;
        gap: 24px;
    }
}
@media (max-width: 400px) {
}