.site-logo img {
    width: clamp(160px, 20vw, 348px);
    height: auto;
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}

.heading-icon {
	margin-right: 0.5rem;
}

.process-message {
	max-height:260px;
	overflow-y:auto;
	padding:0.5em;
	margin:0.5em;
	margin-bottom: 3em;
}

/* Business section styles */
.business-item {
	padding: 2rem;
	height: 100%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.business-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.business-icon {
	margin-bottom: 1.5rem;
}

.business-icon .icon {
	font-size: 3rem;
	color: #fff;
	font-weight: 300;
	text-shadow: none;
}

.business-item h3 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.business-content p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	text-align: left;
}

.business-features {
	list-style: none;
	padding: 0;
	text-align: left;
}

.business-features li {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.5rem;
	padding-left: 0;
}

@media (max-width: 768px) {
	.business-item {
		margin-bottom: 2rem;
	}
	
	.business-icon .icon {
		font-size: 2.5rem;
	}
	
	.business-item h3 {
		font-size: 1.2rem;
	}
}

/* Features section styles */
.feature-item {
	padding: 2rem;
	height: 100%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	margin-bottom: 1.5rem;
}

.feature-icon .icon {
	font-size: 3rem;
	color: #fff;
	font-weight: 300;
}

.feature-item h4 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.feature-content p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	text-align: left;
}

.feature-list {
	list-style: none;
	padding: 0;
	text-align: left;
}

.feature-list li {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0.5rem;
	padding-left: 0;
}

@media (max-width: 768px) {
	.feature-item {
		margin-bottom: 2rem;
	}
	
	.feature-icon .icon {
		font-size: 2.5rem;
	}
	
	.feature-item h4 {
		font-size: 1.2rem;
	}
}

/* Process section styles - Simple Card Design */
.process-step-card {
	background: #fff;
	border-radius: 8px;
	padding: 1.8rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	position: relative;
	height: 100%;
}

.process-step-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.step-number {
	position: absolute;
	top: -12px;
	right: 15px;
	background: #667eea;
	color: #fff;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
	z-index: 2;
}

.step-icon {
	background: #f8f9fa;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	border: 2px solid #e9ecef;
}

.step-icon .icon {
	font-size: 1.8rem;
	color: #667eea;
}

.process-step-card h4 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
}

.process-message {
	max-height: 220px;
	overflow-y: auto;
	padding: 0;
	color: #555;
	line-height: 1.7;
	font-size: 0.9rem;
	text-align: left;
}

/* Clean scrollbar for process message */
.process-message::-webkit-scrollbar {
	width: 4px;
}

.process-message::-webkit-scrollbar-track {
	background: transparent;
}

.process-message::-webkit-scrollbar-thumb {
	background: #ddd;
	border-radius: 2px;
}

.process-message::-webkit-scrollbar-thumb:hover {
	background: #bbb;
}

@media (max-width: 768px) {
	.process-step-card {
		margin-bottom: 1.5rem;
		padding: 1.5rem;
	}
	
	.step-number {
		width: 30px;
		height: 30px;
		font-size: 0.8rem;
		top: -10px;
		right: 12px;
	}
	
	.step-icon {
		width: 50px;
		height: 50px;
	}
	
	.step-icon .icon {
		font-size: 1.5rem;
	}
	
	.process-step-card h4 {
		font-size: 1.1rem;
		margin-bottom: 0.8rem;
	}
	
	.process-message {
		font-size: 0.85rem;
		max-height: 200px;
		line-height: 1.6;
	}
}

/* Recruit page specific styles */
.reason-item {
	padding: 2rem;
	height: 100%;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.reason-icon {
	margin-bottom: 1.5rem;
}

.reason-icon .icon {
	font-size: 3rem;
	color: #fff;
	font-weight: 300;
}

.reason-item h3 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.4rem;
	font-weight: 600;
}

.reason-content p {
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 1.5rem;
	text-align: left;
}

.benefit-card {
	background: #fff;
	border-radius: 8px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	height: 100%;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
	margin-bottom: 1.5rem;
}

.benefit-icon .icon {
	font-size: 2.5rem;
	color: #667eea;
}

.benefit-card h4 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.benefit-card p {
	color: #666;
	line-height: 1.6;
	font-size: 0.9rem;
}

.requirement-item {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2rem;
	backdrop-filter: blur(10px);
}

.requirement-item h4 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.requirement-item h4 .icon {
	margin-right: 0.5rem;
}

.requirement-list {
	list-style: none;
	padding: 0;
}

.requirement-list li {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.environment-item {
	padding: 2rem 1rem;
	transition: all 0.3s ease;
}

.environment-item:hover {
	transform: translateY(-5px);
}

.environment-icon {
	margin-bottom: 1.5rem;
}

.environment-icon .icon {
	font-size: 2.5rem;
	color: #667eea;
}

.environment-item h4 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.3rem;
	font-weight: 600;
}

.environment-item p {
	color: #666;
	line-height: 1.6;
	font-size: 0.9rem;
}

.recruit-detail-item {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2rem;
	backdrop-filter: blur(10px);
	height: 100%;
}

.recruit-detail-item h4 {
	color: #fff;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	font-weight: 600;
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	padding-bottom: 0.5rem;
}

.recruit-list {
	list-style: none;
	padding: 0;
}

.recruit-list li {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.8rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.reason-item {
		margin-bottom: 2rem;
	}
	
	.reason-icon .icon {
		font-size: 2.5rem;
	}
	
	.reason-item h3 {
		font-size: 1.2rem;
	}
	
	.benefit-card {
		margin-bottom: 2rem;
		padding: 1.5rem;
	}
	
	.benefit-icon .icon {
		font-size: 2rem;
	}
	
	.benefit-card h4 {
		font-size: 1.2rem;
	}
	
	.environment-item {
		margin-bottom: 2rem;
		padding: 1.5rem 1rem;
	}
	
	.environment-icon .icon {
		font-size: 2rem;
	}
	
	.environment-item h4 {
		font-size: 1.2rem;
	}
	
	.recruit-detail-item {
		margin-bottom: 2rem;
		padding: 1.5rem;
	}
	
	.recruit-detail-item h4 {
		font-size: 1.2rem;
	}
}

/* Salary Simulator styles */
.simulator-card {
	background: #fff;
	border-radius: 15px;
	padding: 3rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
}

.simulator-inputs {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid #f8f9fa;
}

.form-label {
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.form-control {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-size: 1.1rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.input-group-text {
	background: #667eea;
	color: #fff;
	border: 2px solid #667eea;
	font-weight: 600;
}

.simulator-results {
	text-align: center;
}

.result-item {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 1.5rem;
	height: 100%;
	transition: all 0.3s ease;
}

.result-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.result-item.total-salary {
	background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
	color: #fff;
}

.result-item h5 {
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.result-item.total-salary h5 {
	color: #fff;
}

.result-amount {
	font-size: 2rem;
	font-weight: bold;
	color: #667eea;
	margin: 0.5rem 0;
}

.result-item.total-salary .result-amount {
	color: #fff;
	font-size: 2.2rem;
}

.result-item small {
	color: #666;
	font-size: 0.85rem;
}

.result-item.total-salary small {
	color: rgba(255, 255, 255, 0.9);
}

.simulator-note {
	background: #f8f9fa;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 2rem;
	border-left: 4px solid #667eea;
}

.simulator-note p {
	margin-bottom: 0.5rem;
	color: #666;
	font-size: 0.9rem;
}

.simulator-note strong {
	color: #333;
}

@media (max-width: 768px) {
	.simulator-card {
		padding: 2rem 1.5rem;
	}
	
	.result-amount {
		font-size: 1.5rem;
	}
	
	.result-item.total-salary .result-amount {
		font-size: 1.7rem;
	}
	
	.simulator-note {
		padding: 1rem;
	}
}

/* Site button visibility improvement */
.site-btn {
	background: #667eea !important;
	border: 2px solid #667eea !important;
	color: #fff !important;
	padding: 12px 30px !important;
	border-radius: 25px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	display: inline-block !important;
	transition: all 0.3s ease !important;
	margin-right: 15px !important;
}

.site-btn:hover {
	background: #5a67d8 !important;
	border-color: #5a67d8 !important;
	color: #fff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3) !important;
}

.site-btn:focus,
.site-btn:active {
	background: #5a67d8 !important;
	border-color: #5a67d8 !important;
	color: #fff !important;
	box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
}

/* Salary Table Styles */
.salary-table-card {
	background: #fff;
	border-radius: 15px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border: 1px solid #e1e5e9;
	height: 100%;
}

.salary-table-card h4 {
	color: #333;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.table-subtitle {
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.salary-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 0;
}

.salary-table th {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	padding: 1rem 0.75rem;
	text-align: center;
	font-weight: 600;
	border: none;
}

.salary-table th:first-child {
	border-radius: 8px 0 0 0;
}

.salary-table th:last-child {
	border-radius: 0 8px 0 0;
}

.salary-table td {
	padding: 0.75rem;
	text-align: center;
	border-bottom: 1px solid #eee;
	color: #333;
	font-weight: 500;
}

.salary-table tr:hover {
	background-color: #f8f9fa;
}

.salary-table tr.highlight {
	background-color: #fff3cd;
	font-weight: 600;
}

.salary-table tr.highlight:hover {
	background-color: #ffeaa7;
}

.salary-note-card {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 2rem;
	border: 1px solid #e1e5e9;
}

.salary-note-card h5 {
	color: #333;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.salary-note-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.salary-note-list li {
	padding: 0.5rem 0;
	color: #555;
	border-bottom: 1px solid #dee2e6;
}

.salary-note-list li:last-child {
	border-bottom: none;
}

.salary-note-list li strong {
	color: #333;
}

/* Responsive adjustments for salary table */
@media (max-width: 768px) {
	.salary-table-card {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}
	
	.salary-table th,
	.salary-table td {
		padding: 0.5rem;
		font-size: 0.9rem;
	}
	
	.salary-note-card {
		padding: 1.5rem;
	}
}

/* FAQ Section Styles */
.faq-section {
	background-color: #f8f9fa;
}

.faq-accordion {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.faq-item {
	border-bottom: 1px solid #e1e5e9;
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	padding: 1.5rem 2rem;
	cursor: pointer;
	background: #fff;
	transition: all 0.3s ease;
	position: relative;
}

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

.faq-question h5 {
	margin: 0;
	color: #333;
	font-weight: 600;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
}

.faq-icon {
	margin-right: 1rem;
	color: #667eea;
	transition: transform 0.3s ease;
	width: 1.25rem;
	height: 1.25rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	background-color: #f8f9fa;
}

.faq-content {
	padding: 1.5rem 2rem;
	border-top: 1px solid #e1e5e9;
}

.faq-content p {
	margin: 0;
	color: #555;
	line-height: 1.7;
}

/* Animation for FAQ accordion */
.faq-answer.collapsing {
	transition: height 0.3s ease;
}

@media (max-width: 767px) {
	.main-menu.is-open {
		display: block;
	}
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
	.faq-question {
		padding: 1rem 1.5rem;
	}
	
	.faq-question h5 {
		font-size: 1rem;
	}
	
	.faq-content {
		padding: 1rem 1.5rem;
	}
	
	.faq-icon {
		margin-right: 0.75rem;
	}
}

@media (max-width: 576px) {
	.hero-subscribe-from {
		display: flex;
		flex-direction: column;
		gap: 12px;
		align-items: flex-start;
	}
}

.leadership-visual-wrapper {
	display: block;
	padding: 32px;
}

.leadership-visual {
	display: block;
	width: 100%;
	height: auto;
}
