	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;
	}

	/* About Us Container */
	.about-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);
	}

	.about-header {
		text-align: center;
		margin-bottom: 50px;
	}

	.about-header h1 {
		font-size: 3rem;
		color: #5c3d2e;
		margin-bottom: 10px;
		font-weight: 700;
	}

	.about-header .subtitle {
		font-size: 1.3rem;
		color: #d4a017;
		font-weight: 500;
	}

	/* Discover Section */
	.discover-section {
		margin-bottom: 60px;
		background: rgba(255, 165, 0, 0.85);
		border-radius: 20px;
		padding: 60px 40px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	}
	.discover-cards {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
		gap: 40px;
	}
	.discover-card {
		background: #fff;
		border-radius: 20px;
		overflow: hidden;
		text-decoration: none;
		transition: all 0.3s ease;
		box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	}
	.discover-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 40px rgba(0,0,0,0.25);
	}
	.discover-image {
		position: relative;
		height: 300px;
		overflow: hidden;
	}
	.discover-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.3s ease;
	}
	.discover-card:hover .discover-image img {
		transform: scale(1.1);
	}
	.discover-overlay {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(0, 0, 0, 0.4);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.discover-quote {
		color: #fff;
		font-size: 2rem;
		font-weight: 700;
		letter-spacing: 3px;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
		padding: 15px 30px;
		border: 3px solid #fff;
	}
	.discover-content {
		padding: 25px 30px;
		background: #fff;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.discover-content h3 {
		font-size: 1.3rem;
		color: #2c1810;
		font-weight: 700;
		letter-spacing: 1px;
		margin: 0;
	}
	.discover-arrow {
		width: 50px;
		height: 50px;
		background: #FFA500;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.3s ease;
	}
	.discover-arrow i {
		color: #fff;
		font-size: 1.2rem;
	}
	.discover-card:hover .discover-arrow {
		background: #d4a017;
		transform: translateX(5px);
	}

	/* Story Section */
	.story-section {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 40px;
		margin-bottom: 60px;
		align-items: center;
		background: rgba(255, 255, 255, 0.95);
		border-radius: 20px;
		padding: 60px 40px;
		box-shadow: 0 10px 40px rgba(0,0,0,0.1);
		scroll-margin-top: 100px;
	}

	.story-image img {
		width: 100%;
		height: 400px;
		object-fit: cover;
		border-radius: 15px;
		box-shadow: 0 5px 20px rgba(0,0,0,0.15);
	}

	.story-content h2 {
		font-size: 2rem;
		color: #5c3d2e;
		margin-bottom: 20px;
	}

	.story-content p {
		font-size: 1.1rem;
		color: #666;
		line-height: 1.8;
		margin-bottom: 15px;
	}

	/* Values Section */
	.values-section {
		margin-bottom: 60px;
	}

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

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

	.value-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;
	}

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

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

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

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

	/* Team Section */
	.team-section {
		margin-bottom: 60px;
	}

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

	.team-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 30px;
	}

	.team-member {
		text-align: center;
		background: #fff;
		padding: 30px;
		border-radius: 15px;
		box-shadow: 0 5px 15px rgba(0,0,0,0.1);
		transition: transform 0.3s ease;
	}

	.team-member:hover {
		transform: translateY(-5px);
	}

	.team-member img {
		width: 150px;
		height: 150px;
		border-radius: 50%;
		object-fit: cover;
		margin-bottom: 20px;
		border: 4px solid #d4a017;
	}

	.team-member h3 {
		font-size: 1.3rem;
		color: #5c3d2e;
		margin-bottom: 5px;
	}

	.team-member .position {
		font-size: 1rem;
		color: #d4a017;
		margin-bottom: 10px;
	}

	.team-member p {
		font-size: 0.95rem;
		color: #666;
		line-height: 1.6;
	}

	/* Timeline Section */
	.timeline-section {
		margin-bottom: 60px;
	}

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

	.timeline {
		position: relative;
		max-width: 800px;
		margin: 0 auto;
		padding-left: 50px;
	}

	.timeline::before {
		content: '';
		position: absolute;
		left: 20px;
		top: 0;
		bottom: 0;
		width: 3px;
		background: #d4a017;
	}

	.timeline-item {
		position: relative;
		margin-bottom: 40px;
		padding-left: 40px;
	}

	.timeline-item::before {
		content: '';
		position: absolute;
		left: -38px;
		top: 0;
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background: #d4a017;
		border: 3px solid #fff;
		box-shadow: 0 0 0 3px #d4a017;
	}

	.timeline-year {
		font-size: 1.5rem;
		font-weight: 700;
		color: #d4a017;
		margin-bottom: 10px;
	}

	.timeline-content h3 {
		font-size: 1.3rem;
		color: #5c3d2e;
		margin-bottom: 10px;
	}

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

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

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

	.cta-section p {
		font-size: 1.2rem;
		margin-bottom: 30px;
	}

	.cta-buttons {
		display: flex;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
	}

	.cta-btn {
		padding: 15px 40px;
		font-size: 1.1rem;
		font-weight: 600;
		text-decoration: none;
		border-radius: 50px;
		transition: all 0.3s ease;
		display: inline-block;
	}

	.cta-btn.primary {
		background: #d4a017;
		color: #2c1810;
	}

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

	.cta-btn.secondary {
		background: transparent;
		color: #fff;
		border: 2px solid #fff;
	}

	.cta-btn.secondary:hover {
		background: #fff;
		color: #5c3d2e;
		transform: translateY(-2px);
	}

	/* Responsive Design */
	@media (max-width: 992px) {
		.discover-cards {
			grid-template-columns: 1fr;
		}

		.story-section {
			grid-template-columns: 1fr;
		}

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

		.team-grid {
			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 8px 24px rgba(0,0,0,0.3);
			border-radius: 0 0 15px 15px;
		}

		.top-navbar__menu.active {
			display: flex;
		}
		
		.top-navbar__menu > li {
			width: 100%;
		}
		
		.top-navbar__menu a {
			width: 100%;
			text-align: center;
			padding: 15px;
		}
		
		.top-navbar__menu .dropdown-content {
			position: static;
			box-shadow: none;
			margin-top: 10px;
			background: rgba(0,0,0,0.2);
		}

		.menu-toggle {
			display: flex;
		}

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

		.discover-section {
			padding: 40px 20px;
		}

		.discover-cards {
			grid-template-columns: 1fr;
			gap: 20px;
		}

		.discover-card {
			max-width: 100%;
		}

		.discover-content h3 {
			font-size: 1.1rem;
		}

		.discover-arrow {
			width: 40px;
			height: 40px;
		}

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

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

		.cta-section h2 {
			font-size: 1.8rem;
		}
	}
.customer-feedback-section > div > div > div > div:hover {
				transform: translateY(-8px);
				box-shadow: 0 16px 48px rgba(0,0,0,0.25);
				border-color: rgba(44, 24, 16, 0.5);
			}

			@media (max-width: 768px) {
				.customer-feedback-section h2 {
					font-size: 2rem !important;
				}
				.customer-feedback-section > div {
					padding: 40px 20px !important;
				}
				.customer-feedback-section > div > div > div {
					grid-template-columns: 1fr !important;
					gap: 20px !important;
				}
			}