	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body {
		font-family: 'Arial', sans-serif;
		line-height: 1.6;
		color: #333;
		overflow-x: hidden;
	}

	/* Header */
	header {
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		position: fixed;
		width: 100%;
		top: 0;
		z-index: 1000;
		padding: 1rem 0;
		box-shadow: 0 2px 20px rgba(0,0,0,0.1);
	}

	nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
	}

	.logo {
		display: flex;
		align-items: center;
		gap: 0.5rem;
	}

	.logo-icon {
		width: 40px;
		height: 40px;
		background: #f16022;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: white;
		font-weight: bold;
		font-size: 1.2rem;
	}

	.logo-text {
		font-size: 1.8rem;
		font-weight: bold;
		color: #333;
	}

	.nav-links {
		display: flex;
		list-style: none;
		gap: 2rem;
	}

	.nav-links a {
		text-decoration: none;
		color: #333;
		font-weight: 500;
		transition: color 0.3s ease;
	}

	.nav-links a:hover {
		color: #f16022;
	}

	.cta-button {
		background: #6366f1;
		color: white;
		padding: 0.8rem 1.5rem;
		border-radius: 8px;
		text-decoration: none;
		font-weight: 600;
		transition: all 0.3s ease;
	}

	.cta-button:hover {
		background: #5856eb;
		transform: translateY(-2px);
	}

	/* Hero Section */
	.hero {
		height: 100vh;
		/*background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);*/
		background-image: url("hero.png");
		display: flex;
		align-items: center;
		position: relative;
		overflow: hidden;
	}

	.hero::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect width="1000" height="1000" fill="%23f8f9fa"/><rect x="100" y="100" width="200" height="300" fill="%23ffffff" opacity="0.8"/><rect x="350" y="150" width="150" height="250" fill="%23ffffff" opacity="0.6"/><rect x="550" y="80" width="180" height="320" fill="%23ffffff" opacity="0.7"/><rect x="780" y="120" width="120" height="280" fill="%23ffffff" opacity="0.5"/></svg>') center/cover;
		opacity: 0.3;
	}

	.hero-content {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
		position: relative;
		z-index: 2;
	}

	.hero-text {
		max-width: 600px;
	}

	.hero h1 {
		font-size: 4rem;
		font-weight: 900;
		color: #333;
		margin-bottom: 1rem;
		line-height: 1.1;
	}

	.hero p {
		font-size: 1.3rem;
		color: #222;
		margin-bottom: 2rem;
	}

	.hero-buttons {
		display: flex;
		gap: 1rem;
		margin-top: 2rem;
	}

	.btn-primary {
		background: #f16022;
		color: white;
		padding: 1rem 2rem;
		border-radius: 8px;
		text-decoration: none;
		font-weight: 600;
		transition: all 0.3s ease;
	}

	.btn-primary:hover {
		background: #e55a1f;
		transform: translateY(-2px);
	}

	.btn-secondary {
		background: transparent;
		color: #333;
		padding: 1rem 2rem;
		border: 2px solid #333;
		border-radius: 8px;
		text-decoration: none;
		font-weight: 600;
		transition: all 0.3s ease;
	}

	.btn-secondary:hover {
		background: #333;
		color: white;
	}

	/* Services Section */
	.services {
		padding: 5rem 0;
		background: white;
	}

	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0 2rem;
	}

	.section-title {
		text-align: center;
		font-size: 2.5rem;
		font-weight: 700;
		color: #333;
		margin-bottom: 3rem;
	}

	.services-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2rem;
		margin-top: 3rem;
	}

	.service-card {
		background: #f8f9fa;
		padding: 2rem;
		border-radius: 16px;
		text-align: center;
		transition: all 0.3s ease;
		border: 1px solid #e9ecef;
	}

	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	}

	.service-icon {
		width: 60px;
		height: 60px;
		background: #f16022;
		border-radius: 12px;
		margin: 0 auto 1rem;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		color: white;
	}

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

	.service-card p {
		color: #666;
		line-height: 1.6;
	}

	/* About Section */
	.about {
		padding: 5rem 0;
		background: #f8f9fa;
	}

	.about-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		align-items: center;
	}

	.about-text h2 {
		font-size: 2.5rem;
		font-weight: 700;
		color: #333;
		margin-bottom: 1.5rem;
	}

	.about-text p {
		font-size: 1.1rem;
		color: #666;
		margin-bottom: 1.5rem;
		line-height: 1.7;
	}

	.about-images {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 1rem;
	}

	.about-image {
		height: 200px;
		background: #e9ecef;
		border-radius: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #666;
		font-weight: 600;
	}

	.about-image:nth-child(1) {
		background: linear-gradient(135deg, #f16022, #f9a67e);
		color: white;
	}

	.about-image:nth-child(3) {
		background: linear-gradient(135deg, #6366f1, #8b5cf6);
		color: white;
	}

	/* Contact Section */
	.contact {
		padding: 5rem 0;
		background: white;
	}

	.contact-content {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}

	.contact-info h3 {
		font-size: 1.3rem;
		font-weight: 600;
		color: #6366f1;
		margin-bottom: 0.5rem;
	}

	.contact-info p {
		color: #666;
		margin-bottom: 2rem;
	}

	.contact-form {
		background: #f8f9fa;
		padding: 2rem;
		border-radius: 16px;
	}

	.form-group {
		margin-bottom: 1.5rem;
	}

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

	.form-group input,
	.form-group textarea {
		width: 100%;
		padding: 0.8rem;
		border: 1px solid #ddd;
		border-radius: 8px;
		font-size: 1rem;
	}

	.form-group textarea {
		height: 120px;
		resize: vertical;
	}

	.submit-btn {
		background: #f16022;
		color: white;
		padding: 0.8rem 2rem;
		border: none;
		border-radius: 8px;
		font-weight: 600;
		cursor: pointer;
		transition: background 0.3s ease;
	}

	.submit-btn:hover {
		background: #e55a1f;
	}

	/* Footer */
	footer {
		background: #333;
		color: white;
		text-align: center;
		padding: 2rem 0;
	}

	/* Mobile Responsive */
	@media (max-width: 768px) {
		.nav-links {
			display: none;
		}

		.hero h1 {
			font-size: 2.5rem;
		}

		.hero p {
			font-size: 1.1rem;
		}

		.hero-buttons {
			flex-direction: column;
			align-items: flex-start;
		}

		.about-content,
		.contact-content {
			grid-template-columns: 1fr;
		}

		.about-images {
			grid-template-columns: 1fr;
		}
	}