body {
	line-height: 1.6;
	background-color: #ffffff;
	margin: 0;
	padding: 0;
	}
	.main-image-container {
		position: relative;
		width: 100%;
	}

	.main-title {
		position: absolute;
	    bottom: 10%;
	    left: 50%;
	    transform: translateX(-50%);
	    width: 90%;
	    max-width: 1200px;
	    font-size: 36px;
	    font-weight: bold;
	    color: white;
	    text-align: right; 
	    padding: 10px;
	}
	.container {
		width: 90%;
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px;
	}

	.download-section {
		display: flex;
		flex-direction: column;
		gap: 15px;
		margin-top: auto;
	}

	.download-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		max-width: 600px;
		padding: 10px 15px;
		border: 1px solid #CECECE; 
		background-color: #fff;
		height: 50px;
	}

	.download-text {
		font-size: 13px;
		color: #333;
		flex: 1;
		text-align: left;
		padding-right: 10px;
	}

	.download-button {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 20px;
		border: 1px solid #CECECE;
		color: #333;
		text-decoration: none;
		font-size: 11px;
		transition: background-color 0.3s, color 0.3s;
	}

	.download-button i {
		margin-left: 5px;
	}
	.section {
		margin: 50px 0;
	}
	.section .content {
		display: flex;
		justify-content: space-between;
		align-items: stretch;
		gap: 10px;
	}
	.section .content .media {
		width: 48%; 
	}
	.section .content .text {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 48%;
		height: auto;
	}
	
	.section .content .text p {
		font-size: 16px;
		color: #555;
		line-height: 1.8;
		margin-bottom: 20px;
	}
	.section .content .media img {
		width: 100%;
		height: auto;
	}
	.video-section {
		margin: 50px 0;
		text-align: left;
		width: 100%;
	}
	.video-section video {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	.outer-border {
		padding: 20px;
		margin: 40px 0;
		border-radius: 10px;
		background-color: #F2F2F2;
		text-align: left;
	}

	.section-title {
		font-size: 20px;
		font-weight: bold;
		color: #333;
		margin-bottom: 20px;
	}

	.inner-border {
		padding: 20px;
		background-color: #fff;
		border-radius: 8px;
	}

	.examples-container {
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: center;
	}

	.example-item {
		text-align: center;
		position: relative;
		display: inline-block;
		width: 100%;
		max-width: 600px;
	}

	.example-item img {
		width: 100%;
		max-width: 600px;
	}
	
	.example-item.vertical img {
		display: block;
		margin: 0 auto 10px auto;
	}

	.example-item.horizontal .subtitles {
		width: 100%;
		text-align: center;
	}

	.example-item.horizontal img {
		display: inline-block;
		width: 49%;
	}

	.example-item.horizontal .images {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.example-item .example-title {
		font-size: 16px;
		color: #936424;
		background-color: #F7F3EA;
		border: 1px solid #C0C0C0;
		padding: 5px 10px;
		margin-top: 10px;
		display: inline-block;
		width: 100%; 
		margin-left: auto;
		margin-right: auto;
		position: relative;
	}
	
	.subtitles {
		display: flex;
		flex-direction: column;
		gap: 5px;
	}
	.full-width-line {
		width: 100%;
		border-bottom: 2px solid #F1F1F1;
	}
	.breadcrumb-container {
		width: 90%;
		max-width: 1200px;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		margin: 0 auto;
		padding: 10px 0;
		margin-top: 15px;
		height: 50px;
	}

	.breadcrumb {
		display: flex;
		align-items: center;
		gap: 8px;
		width: 100%
	}
	
	.breadcrumb-btn {
		background: #EFEFEF;
		border: none;
		padding: 6px 14px;
		font-size: 14px;
		font-weight: 500;
		color: #333;
		border-radius: 20px;
		align-items: center;
	}
	
	.faq .nav .nav-text {
		    position: relative;
		    display: inline-block;
		}
		.faq a {
			color: #6c757d;
		}
		.faq .title-container a:hover {
			color: #000000 !important;
			position: relative;
			width: fit-content;
			font-weight: bold;
		}
		.faq .nav-link.active, .faq .nav-link.active:focus {
			color: #000000;
			font-weight: bold;
		}
		.faq .nav-text::after {
			content: "";
			position: absolute;
			left: 0;
			right: 0px;
			bottom: -5px;
			width: 100%;
			height: 2px;
			background-color: currentColor;
			transform: scaleX(0);
			transform-origin: center;
			transition: transform 0.3s ease;
			color: #000000;
		}
		.faq .nav-link.active .nav-text::after, .faq .nav-link:hover .nav-text::after {
			transform: scaleX(1);
		}
		.justify-self-center {
			justify-self: center;
		}
		#login-popup {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        #login-popup .popup-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            width: 300px;
        }
        #login-popup .popup-content button {
            background: #1f296a;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
        }
        .contact {
			padding: 20px 30px;
			background-color: #F2F2F2;
			border: 1px solid #C0C0C0;
			border-radius: 8px;
			font-size: 14px;
			color: #333;
			line-height: 1.8;
			max-width: 600px;
			margin: 40px auto;
			text-align: left;
			box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
		}
		
		.contact h2.section-title {
			font-size: 20px;
			font-weight: bold;
			margin-bottom: 12px;
		}
