
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		line-height: 1.6;
		color: #333;
		background-color: #f8f9fa;
	}

	.container {
		width: 90%;
		max-width: 1200px;
		margin: 0 auto;
	}

	/* Header */
	header {
		background-color: white;
		box-shadow: 0 2px 10px rgba(0,0,0,0.1);
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 1000;
	}

	.navbar {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 20px 0;
	}

	.logo-container {
		display: flex;
		align-items: center;
		gap: 12px;
	}

	.logo-icon {
		width: 45px;
		height: 45px;
		background: linear-gradient(135deg, #2c5530, #4a7c59);
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-size: 1.4rem;
	}

	.logo-text {
		display: flex;
		flex-direction: column;
		line-height: 1.1;
	}

	.logo-main {
		font-size: 1.8rem;
		font-weight: 700;
		color: #2c5530;
	}

	.logo-sub {
		font-size: 0.7rem;
		font-weight: 500;
		color: #4a7c59;
		letter-spacing: 0.5px;
	}

	/* Content */
	.cgv-content {
		background: white;
		margin: 100px auto 50px;
		padding: 50px;
		border-radius: 10px;
		box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	}
	.section {
		margin-bottom: 40px;
	}

	h1 {
		color: #2c5530;
		text-align: center;
		margin-bottom: 40px;
		font-size: 2.5rem;
	}

	.section h2 {
		color: #4a7c59;
		margin: 30px 0 15px;
		padding-bottom: 10px;
		border-bottom: 2px solid #e9ecef;
	}

	.section h3 {
		color: #2c5530;
		margin: 20px 0 10px;
	}

	.section p {
		margin-bottom: 15px;
		color: #555;
	}

	.section ul, ol {
		margin: 15px 0;
		padding-left: 30px;
	}

	.section li {
		margin-bottom: 8px;
		color: #555;
	}


	.highlight-box {
		background: #f8f9fa;
		padding: 25px;
		border-radius: 8px;
		border-left: 4px solid #4a7c59;
		margin: 20px 0;
	}
	.section li::before {
		content: "•"; 
		color: #4a7c59;
		display: inline-block; 
		width: 1em;
		margin-left: -1em;
		font-weight: bold;
	}
	
	.info-box {
		background: #e8f4fd;
		padding: 20px;
		border-radius: 8px;
		border-left: 4px solid #3498db;
		margin: 15px 0;
	}

	.warning-box {
		background: #fef9e7;
		padding: 20px;
		border-radius: 8px;
		border-left: 4px solid #f1c40f;
		margin: 15px 0;
	}

	.section .btn {
		display: inline-block;
		padding: 12px 30px;
		background: #4a7c59;
		color: white;
		text-decoration: none;
		border-radius: 6px;
		font-weight: 600;
		transition: all 0.3s ease;
		border: none;
		cursor: pointer;
		margin-top: 20px;
	}

	.section .btn:hover {
		background: #2c5530;
		transform: translateY(-2px);
	}

	.section table {
		width: 100%;
		border-collapse: collapse;
		margin: 20px 0;
	}

	.section th, td {
		padding: 12px;
		text-align: left;
		border-bottom: 1px solid #ddd;
	}

	.section th {
		background: #f8f9fa;
		color: #2c5530;
		font-weight: 600;
	}

	/* Footer */
	footer {
		background-color: var(--dark-color);
		color: white;
		padding: 60px 0 20px;
	}

	.footer-content {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 40px;
		margin-bottom: 40px;
	}

	.footer-column h3 {
		font-size: 1.3rem;
		margin-bottom: 20px;
		position: relative;
		padding-bottom: 10px;
	}

	.footer-column h3::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 40px;
		height: 2px;
		background-color: var(--secondary-color);
	}

	.footer-links li {
		margin-bottom: 10px;
	}

	.footer-links a {
		transition: var(--transition);
		opacity: 0.8;
	}

	.footer-links a:hover {
		opacity: 1;
		color: var(--secondary-color);
		padding-left: 5px;
	}

	.social-links {
		display: flex;
		gap: 15px;
		margin-top: 20px;
	}

	.social-links a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		background-color: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		transition: var(--transition);
	}

	.social-links a:hover {
		background-color: var(--secondary-color);
		transform: translateY(-5px);
	}

	.copyright {
		text-align: center;
		padding-top: 20px;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 0.9rem;
		opacity: 0.7;
	}

	/* Responsive Design */
	@media (max-width: 992px) {
		.about-content,
		.contact-content {
			grid-template-columns: 1fr;
		}

		.about-image {
			order: -1;
		}

		.process-steps {
			flex-direction: column;
			gap: 40px;
		}

		.process-steps::before {
			display: none;
		}
	}

	@media (max-width: 768px) {
		.menu-toggle {
			display: block;
		}

		.nav-links {
			position: fixed;
			top: 70px;
			left: 0;
			width: 100%;
			background-color: white;
			flex-direction: column;
			align-items: center;
			padding: 20px 0;
			box-shadow: var(--shadow);
			transform: translateY(-150%);
			transition: var(--transition);
		}

		.nav-links.active {
			transform: translateY(0);
		}

		.nav-links li {
			margin: 15px 0;
		}

		.hero h1 {
			font-size: 2.5rem;
		}

		.hero-buttons {
			flex-direction: column;
			align-items: center;
		}

		.btn {
			width: 100%;
			max-width: 250px;
		}
}
