
	* {
		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 */
	.privacy-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 ul {
		margin: 15px 0;
		padding-left: 30px;
	}



	.highlight-box {
		background: #f8f9fa;
		padding: 25px;
		border-radius: 8px;
		border-left: 4px solid #4a7c59;
		margin: 20px 0;
	}

	.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;
	}

	.btn:hover {
		background: #2c5530;
		transform: translateY(-2px);
	}



	@media (max-width: 768px) {
		.privacy-content {
			padding: 30px 20px;
			margin: 80px auto 30px;
		}

		h1 {
			font-size: 2rem;
		}
	}
