/* Responsive styles for freelance client pages */
.apps-preview {
	margin-bottom: 2.5rem;
}
.apps-preview h2 {
	font-size: 2rem;
	color: #1a7f4f;
	margin-bottom: 1.2rem;
	text-align: center;
}
.apps-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}
.app-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(26,127,79,0.08);
	padding: 1.5rem;
	width: 320px;
	max-width: 100%;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
	margin-bottom: 1.5rem;
}
.app-card img {
	width: 90px;
	height: 90px;
	object-fit: contain;
	margin-bottom: 1rem;
}
.app-card h3 {
	color: #14663c;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}
.cta-btn {
	display: inline-block;
	margin-top: 1rem;
	background: #1a7f4f;
	color: #fff;
	padding: 0.7rem 2.2rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(26,127,79,0.08);
	transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
	background: #14663c;
	color: #fff;
}

@media (max-width: 900px) {
	.apps-container {
		flex-direction: column;
		align-items: center;
	}
	.app-card {
		width: 100%;
		padding: 1rem;
	}
	.apps-preview h2 {
		font-size: 1.5rem;
	}
}
@media (max-width: 600px) {
	.apps-preview {
		padding: 0 0.5rem;
	}
	.app-card {
		padding: 0.7rem;
	}
	.app-card img {
		width: 60px;
		height: 60px;
	}
	.cta-btn {
		padding: 0.5rem 1.2rem;
		font-size: 1rem;
	}
}
/* Office Info Section */
.office-info {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(26,127,79,0.08);
	padding: 2rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.office-info h2 {
	color: #14663c;
	margin-top: 1.2rem;
	margin-bottom: 0.5rem;
}
.office-info p {
	color: #444;
	font-size: 1.1rem;
	margin-bottom: 0.7rem;
}
.contact-email {
	color: #1a7f4f;
	text-decoration: underline;
	font-weight: 500;
}

/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #f7f9fa;
	color: #222;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

header {
	background: #1a7f4f;
	color: #fff;
	padding: 0.5rem 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
nav {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1.5rem;
}
nav .logo {
	font-size: 1.7rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	letter-spacing: 1px;
}
nav ul {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}
nav ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	padding: 0.3rem 0.7rem;
	border-radius: 4px;
	transition: background 0.2s;
}
nav ul li a.active, nav ul li a:hover {
	background: #14663c;
}

main {
	flex: 1;
	max-width: 1100px;
	margin: 2rem auto 0 auto;
	padding: 0 1.5rem;
}

/* Hero Section */
.hero {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	background: #e6f4ec;
	border-radius: 16px;
	padding: 2rem 2rem 1rem 2rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 2px 12px rgba(26, 127, 78, 0.629);
}
.hero-content {
	flex: 1 1 350px;
}
.hero-content h1 {
	font-size: 2.5rem;
	color: #1a7f4f;
	margin-bottom: 1rem;
}
.hero-content p {
	font-size: 1.2rem;
	color: #333;
}
.hero-img {
	width: 200px;
    height: 350px;
	max-width: 100%;
	margin-left: 2rem;
	flex: 1 1 250px;
}

/* Apps Preview */
.apps-preview {
	margin-bottom: 2.5rem;
}
.apps-preview h2 {
	font-size: 2rem;
	color: #1a7f4f;
	margin-bottom: 1.2rem;
	text-align: center;
}
.apps-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}
.app-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 5px 6px 4px rgba(0, 128, 0, 0.431);
	padding: 1.5rem;
	width: 320px;
	max-width: 100%;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}
.app-card:hover {
	transform: translateY(-6px) scale(1.03);
	box-shadow: 0 6px 24px rgba(26,127,79,0.13);
}
.app-card img {
	width: 150px;
	height: 150px;
	object-fit: contain;
	margin-bottom: 1rem;
}
.app-card h3 {
	color: #14663c;
	margin-bottom: 0.5rem;
}
.app-card p {
	color: #444;
	font-size: 1rem;
}

/* CTA Section */
.cta {
	background: #1a7f4f;
	color: #fff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	margin-bottom: 2rem;
}
.cta-btn {
	display: inline-block;
	margin-top: 1rem;
	background: #fff;
	color: #1a7f4f;
	padding: 0.7rem 2.2rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 128, 0, 0.399);
	transition: background 0.2s, color 0.2s;
}
.cta-btn:hover {
	background: #14663c;
	color: #fff;
}

/* About Section */
.about-section {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(26,127,79,0.08);
	padding: 2rem;
	margin-bottom: 2rem;
}
.about-section h1 {
	color: #1a7f4f;
	margin-bottom: 1rem;
}
.about-section h2 {
	color: #14663c;
	margin-top: 1.5rem;
}
.about-section p {
	color: #444;
	font-size: 1.1rem;
	margin-bottom: 0.7rem;
}

/* Contact Section */
.contact-section {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 10px rgba(26,127,79,0.08);
	padding: 2rem;
	margin-bottom: 2rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.contact-section h1 {
	color: #1a7f4f;
	margin-bottom: 1.2rem;
	text-align: center;
}
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.contact-form label {
	font-weight: 500;
	color: #14663c;
}
.contact-form input, .contact-form textarea {
	padding: 0.7rem;
	border: 1px solid #b2d8c5;
	border-radius: 6px;
	font-size: 1rem;
	resize: none;
}
.contact-form button {
	background: #1a7f4f;
	color: #fff;
	border: none;
	padding: 0.8rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}
.contact-form button:hover {
	background: #14663c;
}
#formMessage {
	margin-top: 1rem;
	text-align: center;
	font-size: 1rem;
}

footer {
	background: #1a7f4f;
	color: #fff;
	text-align: center;
	padding: 1rem 0;
	margin-top: auto;
	font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
	.hero {
		flex-direction: column;
		text-align: center;
	}
	.hero-img {
		margin: 2rem 0 0 0;
	}
	.apps-container {
		flex-direction: column;
		align-items: center;
	}
}
@media (max-width: 600px) {
	nav {
		flex-direction: column;
		gap: 0.7rem;
		padding: 0.7rem 0.5rem;
	}
	main {
		padding: 0 0.5rem;
	}
	.hero-content h1 {
		font-size: 2rem;
	}
	.apps-preview h2 {
		font-size: 1.3rem;
	}
	.app-card {
		width: 100%;
		padding: 1rem;
	}
	.about-section, .contact-section {
		padding: 1rem;
	}
}
