
	html {
		scroll-behavior: smooth;
	}
	html, body {
		margin: 0;
		padding: 0;
		overflow-x: hidden;
		background: url('https://png.pngtree.com/background/20231101/original/pngtree-intense-close-up-of-falling-coffee-beans-on-vibrant-yellow-background-picture-image_5836024.jpg');
		background-size: cover;
		background-position: center;
		background-attachment: fixed;
		background-repeat: no-repeat;
	}

	/* Top Navigation Bar */
	.top-navbar {
		position: relative;
		background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
		box-shadow: 0 2px 20px rgba(0,0,0,0.3);
		z-index: 1000;
		padding: 15px 0;
	}
	.top-navbar__container {
		max-width: 1400px;
		margin: 0 auto;
		padding: 0 30px;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.top-navbar__logo {
		display: flex;
		align-items: center;
		gap: 15px;
		text-decoration: none;
		color: #ffffff;
	}
	.top-navbar__logo img {
		width: 50px;
		height: 50px;
		object-fit: cover;
		border-radius: 50%;
	}
	.top-navbar__logo-text {
		font-size: 1.5rem;
		font-weight: 700;
		color: #ffffff;
		letter-spacing: 1px;
	}
	.top-navbar__menu {
		display: flex;
		list-style: none;
		margin: 0;
		padding: 0;
		gap: 5px;
		align-items: center;
	}
	.top-navbar__menu > li {
		position: relative;
	}
	.top-navbar__menu a {
		display: block;
		padding: 10px 18px;
		color: #ffffff;
		text-decoration: none;
		font-weight: 500;
		font-size: 0.95rem;
		transition: all 0.3s ease;
		border-radius: 8px;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}
	.top-navbar__menu a:hover,
	.top-navbar__menu a.active {
		background: #d4a017;
		color: #2c1810;
	}
	.top-navbar__menu .dropdown {
		position: relative;
	}
	.top-navbar__menu .dropdown-content {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		background: #fff;
		box-shadow: 0 8px 24px rgba(0,0,0,0.15);
		border-radius: 8px;
		min-width: 200px;
		padding: 8px 0;
		margin-top: 5px;
		list-style: none;
		z-index: 100;
	}
	.top-navbar__menu .dropdown:hover .dropdown-content {
		display: block;
	}
	.top-navbar__menu .dropdown-content a {
		padding: 12px 20px;
		color: #2c1810;
		border-radius: 0;
		text-transform: none;
	}
	.top-navbar__menu .dropdown-content a:hover {
		background: #f5f5f5;
		color: #d4a017;
	}
	.menu-toggle {
		display: none;
		flex-direction: column;
		cursor: pointer;
		gap: 5px;
	}
	.menu-toggle span {
		width: 25px;
		height: 3px;
		background: #ffffff;
		border-radius: 2px;
		transition: all 0.3s ease;
	}

	/* Careers Container */
	.careers-container {
		max-width: 1200px;
		margin: 50px auto;
		padding: 40px 20px;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 20px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	}

	/* Header Section */
	.careers-header {
		text-align: center;
		margin-bottom: 50px;
		padding: 40px 20px;
		background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
		border-radius: 15px;
		color: white;
	}

	.careers-header h1 {
		font-size: 3rem;
		margin-bottom: 10px;
		font-weight: 700;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	}

	.careers-header .subtitle {
		font-size: 1.4rem;
		color: #d4a017;
		font-weight: 500;
		margin-top: 15px;
	}

	.careers-header p {
		font-size: 1.1rem;
		line-height: 1.8;
		margin-top: 20px;
		opacity: 0.95;
	}

	/* Why Join Us Section */
	.why-join-section {
		margin-bottom: 60px;
	}

	.why-join-section h2 {
		text-align: center;
		font-size: 2.5rem;
		color: #5c3d2e;
		margin-bottom: 40px;
	}

	.benefits-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	.benefit-card {
		background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
		padding: 30px;
		border-radius: 15px;
		text-align: center;
		box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.benefit-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 10px 30px rgba(0,0,0,0.2);
	}

	.benefit-card i {
		font-size: 3rem;
		color: #d4a017;
		margin-bottom: 20px;
	}

	.benefit-card h3 {
		font-size: 1.5rem;
		color: #5c3d2e;
		margin-bottom: 15px;
	}

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

	/* Job Openings Section */
	.job-openings-section {
		margin-bottom: 60px;
	}

	.job-openings-section h2 {
		text-align: center;
		font-size: 2.5rem;
		color: #5c3d2e;
		margin-bottom: 40px;
	}

	.jobs-list {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}

	.job-card {
		background: #fff;
		padding: 30px;
		border-radius: 15px;
		box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
		border-left: 5px solid #d4a017;
	}

	.job-card:hover {
		transform: translateX(10px);
		box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	}

	.job-header {
		display: flex;
		justify-content: space-between;
		align-items: start;
		margin-bottom: 20px;
	}

	.job-title {
		font-size: 1.8rem;
		color: #5c3d2e;
		margin-bottom: 10px;
		font-weight: 700;
	}

	.job-meta {
		display: flex;
		gap: 20px;
		flex-wrap: wrap;
		margin-bottom: 15px;
	}

	.job-meta-item {
		display: flex;
		align-items: center;
		gap: 8px;
		color: #666;
		font-size: 0.95rem;
	}

	.job-meta-item i {
		color: #d4a017;
	}

	.job-description {
		color: #666;
		line-height: 1.8;
		margin-bottom: 20px;
	}

	.job-requirements {
		margin-bottom: 20px;
	}

	.job-requirements h4 {
		color: #5c3d2e;
		margin-bottom: 10px;
		font-size: 1.1rem;
	}

	.job-requirements ul {
		padding-left: 25px;
		color: #666;
		line-height: 1.8;
	}

	.apply-btn {
		display: inline-block;
		padding: 12px 30px;
		background: #d4a017;
		color: #2c1810;
		text-decoration: none;
		border-radius: 50px;
		font-weight: 600;
		transition: all 0.3s ease;
		border: none;
		cursor: pointer;
		font-size: 1rem;
	}

	.apply-btn:hover {
		background: #b88915;
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(212, 160, 23, 0.4);
	}

	/* Application Form Section */
	.application-section {
		margin-bottom: 60px;
		padding: 40px;
		background: linear-gradient(135deg, #f9f9f9 0%, #fff 100%);
		border-radius: 15px;
	}

	.application-section h2 {
		text-align: center;
		font-size: 2.5rem;
		color: #5c3d2e;
		margin-bottom: 20px;
	}

	.application-section > p {
		text-align: center;
		color: #666;
		margin-bottom: 40px;
		font-size: 1.1rem;
	}

	.application-form {
		max-width: 600px;
		margin: 0 auto;
	}

	.form-group {
		margin-bottom: 25px;
	}

	.form-group label {
		display: block;
		margin-bottom: 8px;
		color: #5c3d2e;
		font-weight: 600;
		font-size: 1rem;
	}

	.form-group input,
	.form-group select,
	.form-group textarea {
		width: 100%;
		padding: 12px 15px;
		border: 2px solid #e0e0e0;
		border-radius: 8px;
		font-size: 1rem;
		transition: border-color 0.3s ease;
		font-family: inherit;
	}

	.form-group input:focus,
	.form-group select:focus,
	.form-group textarea:focus {
		outline: none;
		border-color: #d4a017;
	}

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

	.form-submit {
		text-align: center;
	}

	.submit-btn {
		padding: 15px 50px;
		background: #5c3d2e;
		color: white;
		border: none;
		border-radius: 50px;
		font-size: 1.1rem;
		font-weight: 600;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.submit-btn:hover {
		background: #4a2f1f;
		transform: translateY(-2px);
		box-shadow: 0 5px 20px rgba(92, 61, 46, 0.4);
	}

	/* Culture Section */
	.culture-section {
		text-align: center;
		padding: 50px 20px;
		background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
		border-radius: 15px;
		color: #fff;
		margin-bottom: 60px;
	}

	.culture-section h2 {
		font-size: 2.5rem;
		margin-bottom: 20px;
	}

	.culture-section p {
		font-size: 1.2rem;
		line-height: 1.8;
		margin-bottom: 30px;
		max-width: 800px;
		margin-left: auto;
		margin-right: auto;
	}

	.culture-images {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		margin-top: 40px;
	}

	.culture-images img {
		width: 100%;
		height: 250px;
		object-fit: cover;
		border-radius: 15px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.3);
	}

	/* Responsive Design */
	@media (max-width: 992px) {
		.benefits-grid {
			grid-template-columns: repeat(2, 1fr);
		}

		.culture-images {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 768px) {
		.top-navbar__menu {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: linear-gradient(135deg, #5c3d2e 0%, #4a2f1f 100%);
			flex-direction: column;
			padding: 20px;
			box-shadow: 0 5px 20px rgba(0,0,0,0.3);
			border-radius: 0 0 15px 15px;
		}

		.top-navbar__menu.active {
			display: flex;
		}

		.top-navbar__menu-item {
			width: 100%;
			text-align: center;
			padding: 15px;
		}

		.top-navbar__dropdown {
			position: static;
		}

		.menu-toggle {
			display: flex;
		}

		.careers-header h1 {
			font-size: 2rem;
		}

		.benefits-grid {
			grid-template-columns: 1fr;
		}

		.job-header {
			flex-direction: column;
		}

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