* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', 'Arial', sans-serif;
	background-color: #f7f8fa;
	color: #1c1c1c;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f7f8fa;
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(45deg, #2c3e50, #e67e22);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(45deg, #34495e, #d35400);
}

/* ========== TYPOGRAPHY ========== */
h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: #2c3e50;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 1.25rem;
	color: #2c3e50;
}

h3 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0.875rem;
	color: #1c1c1c;
}

p {
	font-size: 1.1rem;
	margin-bottom: 1rem;
	color: #1c1c1c;
	opacity: 0.9;
}

/* ========== LAYOUT CONTAINERS ========== */
.oz-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.oz-section {
	padding: 80px 0;
	position: relative;
}

.oz-section-alt {
	background: #ffffff;
	box-shadow: 0 2px 6px rgba(44, 62, 80, 0.05);
}

/* ========== HEADER STYLES ========== */
.oz-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: rgba(247, 248, 250, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
	transition: all 0.3s ease;
}

.oz-header-scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 15px rgba(44, 62, 80, 0.1);
}

.oz-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
}

.oz-logo {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.oz-logo-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.2rem;
	font-weight: bold;
}

.oz-logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: #2c3e50;
}

.oz-logo:hover {
	transform: scale(1.05);
}

.oz-nav {
	display: flex;
	gap: 5px;
	align-items: center;
}

.oz-nav-link {
	text-decoration: none;
	color: #1c1c1c;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 1rem;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.oz-nav-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(44, 62, 80, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.oz-nav-link:hover::before {
	left: 100%;
}

.oz-nav-link:hover {
	color: #2c3e50;
	background: rgba(44, 62, 80, 0.05);
	transform: translateY(-2px);
}

.oz-nav-link.oz-active {
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	color: #ffffff;
	font-weight: 600;
}

.oz-header-phone {
	font-weight: 600;
	color: #e67e22;
	text-decoration: none;
	padding: 0.5rem 1rem;
	border: 2px solid #e67e22;
	border-radius: 25px;
	transition: all 0.3s ease;
}

.oz-header-phone:hover {
	background: #e67e22;
	color: #ffffff;
	transform: translateY(-2px);
}

/* ========== MOBILE MENU ========== */
.oz-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #1c1c1c;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 0.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.oz-mobile-toggle:hover {
	background: rgba(44, 62, 80, 0.1);
	color: #2c3e50;
}

/* ========== HERO SECTION ========== */
.oz-hero {
	min-height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(
			135deg,
			rgba(247, 248, 250, 0.9),
			rgba(255, 255, 255, 0.8)
		),
		url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.1"><rect x="10" y="10" width="80" height="80" fill="%232C3E50"/></svg>')
			repeat;
}

.oz-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/oz-hero.avif') center/cover;
	z-index: 1;
	opacity: 0.3;
}

.oz-hero-content {
	text-align: center;
	z-index: 2;
	position: relative;
	max-width: 800px;
}

.oz-hero-heading {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	color: #2c3e50;
	text-shadow: 2px 2px 4px rgba(44, 62, 80, 0.1);
}

.oz-hero-subheading {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	color: #1c1c1c;
	opacity: 0.8;
	font-weight: 400;
}

.oz-hero-buttons {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	align-items: center;
}

/* ========== BUTTON STYLES ========== */
.oz-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2rem;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	min-width: 200px;
	height: 60px;
	justify-content: center;
}

.oz-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s ease;
}

.oz-btn:hover::before {
	left: 100%;
}

.oz-btn-primary {
	background: #e67e22;
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.oz-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
	background: #d35400;
}

.oz-btn-secondary {
	background: transparent;
	color: #2c3e50;
	border: 2px solid #2c3e50;
	box-shadow: 0 4px 15px rgba(44, 62, 80, 0.1);
}

.oz-btn-secondary:hover {
	background: #2c3e50;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

/* ========== CARD STYLES ========== */
.oz-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.oz-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #2c3e50, #e67e22);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.oz-card:hover::before {
	transform: scaleX(1);
}

.oz-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(44, 62, 80, 0.15);
	border-color: rgba(44, 62, 80, 0.2);
}

.oz-card-icon {
	font-size: 3rem;
	color: #e67e22;
	margin-bottom: 1.5rem;
}

.oz-card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.oz-card-description {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.6;
}

.oz-card-stat {
	font-size: 2.5rem;
	font-weight: 700;
	color: #e67e22;
	margin-top: 1rem;
}

/* ========== GRID LAYOUTS ========== */
.oz-grid {
	display: grid;
	gap: 2rem;
}

.oz-grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.oz-grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.oz-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.oz-grid-6 {
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* ========== ABOUT OVERVIEW SECTION ========== */
.oz-about-overview {
	padding: 80px 0;
	background: #ffffff;
}

.oz-about-overview-content {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 3rem;
	align-items: center;
}

.oz-about-text {
	font-size: 1.2rem;
	line-height: 1.7;
	margin-bottom: 2rem;
}

.oz-advantages-list {
	list-style: none;
	padding: 0;
}

.oz-advantage-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem;
	background: #f7f8fa;
	border-radius: 8px;
	border-left: 4px solid #e67e22;
}

.oz-advantage-icon {
	font-size: 1.5rem;
	color: #e67e22;
	margin-top: 0.25rem;
}

.oz-advantage-text {
	flex: 1;
}

.oz-advantage-title {
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

/* ========== WORKFLOW SECTION ========== */
.oz-workflow {
	padding: 80px 0;
	background: #f7f8fa;
}

.oz-workflow-header {
	text-align: center;
	margin-bottom: 3rem;
}

.oz-workflow-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	position: relative;
}

.oz-workflow-step {
	text-align: center;
	padding: 2rem;
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
	transition: all 0.3s ease;
	position: relative;
	border: 2px solid rgba(230, 126, 34, 0.2);
}

.oz-workflow-step:hover {
	transform: translateY(-5px);
	border-color: #e67e22;
	box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
}

.oz-workflow-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 auto 1.5rem;
}

.oz-workflow-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.oz-workflow-description {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.5;
}

/* ========== EQUIPMENT CATALOG PREVIEW ========== */
.oz-catalog-preview {
	padding: 80px 0;
	background: #ffffff;
}

.oz-catalog-header {
	text-align: center;
	margin-bottom: 3rem;
}

.oz-equipment-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.oz-equipment-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(44, 62, 80, 0.1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.oz-equipment-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(44, 62, 80, 0.15);
}

.oz-equipment-image {
	width: 100%;
	height: 200px;

	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #2c3e50;
}

.oz-equipment-content {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.oz-equipment-content a {
	margin-top: auto;
}

.oz-equipment-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.oz-equipment-description {
	color: #1c1c1c;
	opacity: 0.8;
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.oz-equipment-btn {
	background: #e67e22;
	color: #ffffff;
	border: none;
	padding: 0.5rem 1rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

.oz-equipment-btn:hover {
	background: #d35400;
	transform: translateY(-2px);
}

.oz-catalog-cta {
	text-align: center;
}

/* ========== TESTIMONIALS SECTION ========== */
.oz-testimonials {
	padding: 80px 0;
	background: #f7f8fa;
}

.oz-testimonials-header {
	text-align: center;
	margin-bottom: 3rem;
}

.oz-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.oz-testimonial-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
	border-left: 4px solid #e67e22;
	transition: all 0.3s ease;
}

.oz-testimonial-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
}

.oz-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	margin-bottom: 1.5rem;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #ffffff;
	font-weight: bold;
}

.oz-testimonial-text {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	font-style: italic;
	color: #1c1c1c;
	line-height: 1.6;
}

.oz-testimonial-author {
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.oz-testimonial-company {
	color: #e67e22;
	font-size: 0.9rem;
}

/* ========== CONTACT SECTION ========== */
.oz-contact {
	padding: 80px 0;
	background: linear-gradient(
			135deg,
			rgba(44, 62, 80, 0.8),
			rgba(230, 126, 34, 0.8)
		),
		url('assets/oz-contact-section.avif') center/cover;
	background-attachment: fixed;
}

.oz-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}

.oz-contact-info {
	padding: 2rem;
}

.oz-contact-info h2 {
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.oz-contact-info p {
	margin-bottom: 2rem;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #f7f8fa;
}

.oz-contact-form {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.oz-contact-form h3 {
	color: #2c3e50;
	margin-bottom: 2rem;
}

.oz-form-group {
	margin-bottom: 1.5rem;
}

.oz-form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #2c3e50;
	font-size: 1rem;
}

.oz-form-control {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid rgba(44, 62, 80, 0.1);
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #f7f8fa;
	color: #1c1c1c;
}

.oz-form-control::placeholder {
	color: rgba(28, 28, 28, 0.5);
}

.oz-form-control:focus {
	outline: none;
	border-color: #e67e22;
	box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
	background: #ffffff;
}

.oz-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.oz-form-submit {
	width: 100%;
	background: #e67e22;
	color: #ffffff;
	border: none;
	padding: 1rem;
	border-radius: 6px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.oz-form-submit:hover:not(:disabled) {
	background: #d35400;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.oz-form-submit:disabled {
	background: rgba(230, 126, 34, 0.5);
	cursor: not-allowed;
	transform: none;
}

.oz-form-error {
	color: #e74c3c;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	min-height: 1.2rem;
}

/* ========== FOOTER STYLES ========== */
.oz-footer {
	background: #2c3e50;
	color: #ffffff;
	padding: 3rem 0 1rem;
}

.oz-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.oz-footer-section h3 {
	color: #e67e22;
	margin-bottom: 1.5rem;
	font-size: 1.2rem;
}

.oz-footer-links {
	list-style: none;
	padding: 0;
}

.oz-footer-links li {
	margin-bottom: 0.8rem;
}

.oz-footer-links a {
	color: #ffffff;
	text-decoration: none;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.oz-footer-links a:hover {
	opacity: 1;
	color: #e67e22;
	transform: translateX(5px);
}

.oz-footer-contact-info p {
	margin-bottom: 0.5rem;
	opacity: 0.8;
	font-size: 0.95rem;
	color: #ffffff;
}

.oz-footer-contact-info p a {
	color: #e67e22;
	text-decoration: underline;
	transition: color 0.3s ease;
}
.oz-footer-contact-info p a:hover {
	color: #d35400;
}

.oz-footer-bottom {
	border-top: 1px solid rgba(230, 126, 34, 0.2);
	padding-top: 1.5rem;
	text-align: center;
}

.oz-footer-bottom p {
	opacity: 0.7;
	margin: 0;
	color: #ffffff;
}

/* ========== COOKIE BANNER ========== */
.oz-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #2c3e50;
	color: #ffffff;
	padding: 1.5rem;
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	box-shadow: 0 -4px 15px rgba(44, 62, 80, 0.3);
	border-top: 1px solid #e67e22;
	display: none;
}

.oz-cookie-banner.show {
	transform: translateY(0);
	display: block;
}

.oz-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.oz-cookie-text h3 {
	color: #e67e22;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.oz-cookie-text p {
	margin: 0;
	opacity: 0.9;
	font-size: 0.95rem;
	color: #ffffff;
}

.oz-cookie-text a {
	color: #e67e22;
	text-decoration: underline;
}

.oz-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.oz-cookie-btn {
	background: #e67e22;
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.oz-cookie-btn:hover {
	background: #d35400;
	transform: translateY(-2px);
}

/* ========== ABOUT PAGE STYLES ========== */
.oz-about-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
	text-align: center;
}

.oz-about-content {
	padding: 80px 0;
	background: #ffffff;
}

.oz-about-text-section {
	margin-bottom: 3rem;
}

.oz-about-text-section h2 {
	color: #2c3e50;
	margin-bottom: 1.5rem;
}

.oz-about-text-section p {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.oz-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.oz-team-member {
	background: #f7f8fa;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.oz-team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
	background: #ffffff;
}

.oz-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	margin: 0 auto 1.5rem;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #ffffff;
	font-weight: bold;
}

.oz-team-name {
	font-size: 1.3rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.oz-team-role {
	color: #e67e22;
	font-weight: 500;
	margin-bottom: 1rem;
}

.oz-team-description {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.5;
}

/* ========== EQUIPMENT PAGE STYLES ========== */
.oz-equipment-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
	text-align: center;
}

/* .oz-equipment-content {
	padding: 80px 0;
	background: #ffffff;
} */

.oz-equipment-categories {
	margin-bottom: 3rem;
}

.oz-category-header {
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #e67e22;
}

.oz-category-title {
	color: #2c3e50;
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

.oz-category-description {
	color: #1c1c1c;
	opacity: 0.8;
	font-size: 1.1rem;
}

.oz-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.oz-machine-card {
	background: #f7f8fa;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
	transition: all 0.3s ease;
	border: 1px solid rgba(44, 62, 80, 0.1);
}

.oz-machine-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(44, 62, 80, 0.15);
	background: #ffffff;
}

.oz-machine-image {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
	color: #2c3e50;
}

.oz-machine-content {
	padding: 1.5rem;
}

.oz-machine-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 1rem;
}

.oz-machine-specs {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

.oz-machine-specs li {
	display: flex;
	justify-content: space-between;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(44, 62, 80, 0.1);
	font-size: 0.9rem;
}

.oz-machine-specs li:last-child {
	border-bottom: none;
}

.oz-machine-rent-btn {
	background: #e67e22;
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	width: 100%;
	text-align: center;
}

.oz-machine-rent-btn:hover {
	background: #d35400;
	transform: translateY(-2px);
}

/* ========== RENTAL PAGE STYLES ========== */
.oz-rental-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
	text-align: center;
}

.oz-rental-content {
	padding: 80px 0;
	background: #ffffff;
}

.oz-rental-section {
	margin-bottom: 3rem;
	padding: 2rem;
	background: #f7f8fa;
	border-radius: 12px;
	border-left: 4px solid #e67e22;
}

.oz-rental-section h2 {
	color: #2c3e50;
	margin-bottom: 1.5rem;
	word-wrap: break-word;
}

.oz-rental-section p {
	margin-bottom: 1rem;
	line-height: 1.6;
}

.oz-rental-section ul {
	list-style: none;
	padding-left: 0;
}

.oz-rental-section li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.oz-rental-section li::before {
	content: '✓';
	color: #e67e22;
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* ========== CONTACT PAGE STYLES ========== */
.oz-contact-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
	text-align: center;
}

.oz-contact-page-content {
	padding: 80px 0;
	background: #ffffff;
}

.oz-contact-info-section {
	background: #f7f8fa;
	padding: 2rem;
	border-radius: 12px;
	margin-bottom: 3rem;
	border-left: 4px solid #e67e22;
}

.oz-contact-info-section h2 {
	color: #2c3e50;
	margin-bottom: 1.5rem;
	word-wrap: break-word;
}

.oz-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.oz-contact-item-icon {
	font-size: 1.5rem;
	color: #e67e22;
	width: 2rem;
	text-align: center;
	margin-top: 0.25rem;
}

.oz-contact-item-content {
	flex: 1;
}

.oz-contact-item-content h3 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.oz-contact-item-content p {
	margin: 0;
	color: #1c1c1c;
	opacity: 0.8;
	word-break: break-all;
}

/* ========== SERVICES SUBDOMAIN PAGE STYLES ========== */
.oz-services-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
	text-align: center;
}

.oz-services-content {
	padding: 80px 0;
	background: #ffffff;
}

.oz-services-text {
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 800px;
	margin: 0 auto;
}

.oz-services-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.oz-service-feature {
	background: #f7f8fa;
	padding: 2rem;
	border-radius: 12px;
	border-left: 4px solid #e67e22;
	transition: all 0.3s ease;
}

.oz-service-feature:hover {
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
	transform: translateY(-3px);
}

.oz-service-feature h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

.oz-service-feature p {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.6;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablets and Small Desktops */
@media (max-width: 1110px) {
	.oz-nav {
		display: none;
	}

	.oz-mobile-toggle {
		display: block;
	}
}

@media (max-width: 1024px) {
	.oz-container {
		padding: 0 15px;
	}

	.oz-hero-heading {
		font-size: 3.2rem;
	}

	.oz-contact-grid,
	.oz-about-overview-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
}

/* Tablets */
@media (max-width: 768px) {
	.oz-hero-heading {
		font-size: 2.8rem;
	}

	.oz-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.oz-btn {
		width: 250px;
	}

	.oz-workflow-steps,
	.oz-equipment-grid,
	.oz-testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	h1 {
		font-size: 3rem;
	}

	.oz-logo-text {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 2.2rem;
	}

	.oz-cookie-content {
		flex-direction: column;
		align-items: flex-start;
	}

	.oz-hero-heading {
		font-size: 1.5rem;
	}
	.oz-hero-subheading {
		font-size: 1.2rem;
	}
}

@media (max-width: 578px) {
	.oz-header-phone {
		display: none;
	}

	.oz-workflow-steps,
	.oz-equipment-grid,
	.oz-testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* Mobile */
@media (max-width: 480px) {
	.oz-workflow-steps,
	.oz-equipment-grid,
	.oz-testimonials-grid,
	.oz-team-grid,
	.oz-category-grid,
	.oz-services-features {
		grid-template-columns: 1fr;
	}

	.oz-logo-text {
		font-size: 1.3rem;
	}
	.oz-card {
		padding: 1.5rem;
	}

	h1 {
		font-size: 1.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.oz-footer-content {
		grid-template-columns: 1fr;
	}
}

/* Print Styles */
@media print {
	.oz-header,
	.oz-footer,
	.oz-cookie-banner {
		display: none;
	}

	body {
		background: #ffffff;
		color: #000000;
	}

	.oz-container {
		max-width: 100%;
		padding: 0;
		margin: 0;
	}
}

/* ========== UTILITY CLASSES ========== */
.oz-text-center {
	text-align: center;
}

.oz-text-left {
	text-align: left;
}

.oz-text-right {
	text-align: right;
}

.oz-mb-0 {
	margin-bottom: 0;
}

.oz-mb-1 {
	margin-bottom: 1rem;
}

.oz-mb-2 {
	margin-bottom: 2rem;
}

.oz-mb-3 {
	margin-bottom: 3rem;
}

.oz-mt-0 {
	margin-top: 0;
}

.oz-mt-1 {
	margin-top: 1rem;
}

.oz-mt-2 {
	margin-top: 2rem;
}

.oz-mt-3 {
	margin-top: 3rem;
}

.oz-p-0 {
	padding: 0;
}

.oz-p-1 {
	padding: 1rem;
}

.oz-p-2 {
	padding: 2rem;
}

.oz-p-3 {
	padding: 3rem;
}

.oz-hidden {
	display: none;
}

.oz-visible {
	display: block;
}

.oz-flex {
	display: flex;
}

.oz-flex-column {
	flex-direction: column;
}

.oz-align-center {
	align-items: center;
}

.oz-justify-center {
	justify-content: center;
}

.oz-justify-between {
	justify-content: space-between;
}

.oz-gap-1 {
	gap: 1rem;
}

.oz-gap-2 {
	gap: 2rem;
}

.oz-gap-3 {
	gap: 3rem;
}

.oz-w-full {
	width: 100%;
}

.oz-h-full {
	height: 100%;
}

.oz-relative {
	position: relative;
}

.oz-absolute {
	position: absolute;
}

.oz-fixed {
	position: fixed;
}

.oz-z-10 {
	z-index: 10;
}

.oz-z-20 {
	z-index: 20;
}

.oz-z-30 {
	z-index: 30;
}

.oz-opacity-50 {
	opacity: 0.5;
}

.oz-opacity-80 {
	opacity: 0.8;
}

.oz-opacity-90 {
	opacity: 0.9;
}

.oz-border-radius-sm {
	border-radius: 4px;
}

.oz-border-radius-md {
	border-radius: 8px;
}

.oz-border-radius-lg {
	border-radius: 12px;
}

.oz-border-radius-xl {
	border-radius: 16px;
}

.oz-shadow-sm {
	box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
}

.oz-shadow-md {
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
}

.oz-shadow-lg {
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.12);
}

.oz-shadow-xl {
	box-shadow: 0 12px 40px rgba(44, 62, 80, 0.15);
}

.oz-transition {
	transition: all 0.3s ease;
}

.oz-hover-scale:hover {
	transform: scale(1.05);
}

.oz-hover-lift:hover {
	transform: translateY(-5px);
}

.oz-gradient-primary {
	background: linear-gradient(135deg, #2c3e50, #e67e22);
}

.oz-gradient-secondary {
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
}

.oz-text-primary {
	color: #2c3e50;
}

.oz-text-secondary {
	color: #e67e22;
}

.oz-text-dark {
	color: #1c1c1c;
}

.oz-text-light {
	color: #ffffff;
}

.oz-bg-primary {
	background-color: #2c3e50;
}

.oz-bg-secondary {
	background-color: #e67e22;
}

.oz-bg-light {
	background-color: #f7f8fa;
}

.oz-bg-white {
	background-color: #ffffff;
}

.oz-border-primary {
	border-color: #2c3e50;
}

.oz-border-secondary {
	border-color: #e67e22;
}

.oz-font-light {
	font-weight: 300;
}

.oz-font-normal {
	font-weight: 400;
}

.oz-font-medium {
	font-weight: 500;
}

.oz-font-semibold {
	font-weight: 600;
}

.oz-font-bold {
	font-weight: 700;
}

.oz-font-extrabold {
	font-weight: 800;
}

.oz-text-xs {
	font-size: 0.75rem;
}

.oz-text-sm {
	font-size: 0.875rem;
}

.oz-text-base {
	font-size: 1rem;
}

.oz-text-lg {
	font-size: 1.125rem;
}

.oz-text-xl {
	font-size: 1.25rem;
}

.oz-text-2xl {
	font-size: 1.5rem;
}

.oz-text-3xl {
	font-size: 1.875rem;
}

.oz-text-4xl {
	font-size: 2.25rem;
}

.oz-text-5xl {
	font-size: 3rem;
}

.oz-leading-tight {
	line-height: 1.25;
}

.oz-leading-normal {
	line-height: 1.5;
}

.oz-leading-relaxed {
	line-height: 1.625;
}

.oz-leading-loose {
	line-height: 2;
}

.oz-cursor-pointer {
	cursor: pointer;
}

.oz-cursor-not-allowed {
	cursor: not-allowed;
}

.oz-overflow-hidden {
	overflow: hidden;
}

.oz-overflow-auto {
	overflow: auto;
}

.oz-whitespace-nowrap {
	white-space: nowrap;
}

.oz-break-words {
	word-break: break-word;
}

.oz-select-none {
	user-select: none;
}

.oz-services-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f7f8fa, #ffffff);
	text-align: center;
}

.oz-services-content {
	padding: 80px 0;
	background: #ffffff;
}

.oz-services-text {
	font-size: 1.1rem;
	line-height: 1.7;
	max-width: 800px;
	margin: 0 auto;
}

.oz-services-features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.oz-service-feature {
	background: #f7f8fa;
	padding: 2rem;
	border-radius: 12px;
	border-left: 4px solid #e67e22;
	transition: all 0.3s ease;
}

.oz-service-feature:hover {
	background: #ffffff;
	box-shadow: 0 8px 30px rgba(44, 62, 80, 0.1);
	transform: translateY(-3px);
}

.oz-service-feature h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

.oz-service-feature p {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.6;
}

/* ========== SPECIALIZATIONS SECTION ========== */
.oz-services-specializations {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.oz-specialization-card {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(44, 62, 80, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid rgba(44, 62, 80, 0.1);
	position: relative;
	overflow: hidden;
}

.oz-specialization-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2c3e50, #e67e22);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.oz-specialization-card:hover::before {
	transform: scaleX(1);
}

.oz-specialization-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 35px rgba(44, 62, 80, 0.15);
	border-color: rgba(230, 126, 34, 0.3);
}

.oz-specialization-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: #ffffff;
	transition: all 0.3s ease;
}

.oz-specialization-card:hover .oz-specialization-icon {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.oz-specialization-card h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.3rem;
}

.oz-specialization-card p {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.6;
	font-size: 1rem;
}

/* ========== PROCESS SECTION ========== */
.oz-process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
	position: relative;
}

.oz-process-step {
	background: #f7f8fa;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	border: 2px solid rgba(230, 126, 34, 0.1);
	position: relative;
}

.oz-process-step:hover {
	background: #ffffff;
	border-color: #e67e22;
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(230, 126, 34, 0.15);
}

.oz-process-number {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2c3e50, #e67e22);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	transition: all 0.3s ease;
}

.oz-process-step:hover .oz-process-number {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.oz-process-step h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.oz-process-step p {
	color: #1c1c1c;
	opacity: 0.8;
	line-height: 1.5;
	font-size: 0.95rem;
}

/* ========== SERVICES PAGE RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
	.oz-services-features,
	.oz-services-specializations {
		grid-template-columns: 1fr;
	}

	.oz-process-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.oz-specialization-card,
	.oz-service-feature {
		padding: 1.5rem;
	}

	.oz-specialization-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.oz-process-steps {
		grid-template-columns: 1fr;
	}

	.oz-service-feature,
	.oz-specialization-card,
	.oz-process-step {
		padding: 1.25rem;
	}

	.oz-services-text {
		font-size: 1rem;
	}
}

.oz-legal-content {
	background: var(--oz-light-background);
	padding: 6rem 0 4rem 0;
	min-height: 80vh;
}

.oz-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid var(--oz-steel-blue);
}

.oz-legal-header h1 {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--oz-steel-blue);
	margin-bottom: 1rem;
	line-height: 1.2;
}

.oz-legal-updated {
	font-size: 1rem;
	color: var(--oz-text-secondary);
	font-style: italic;
}

.oz-legal-intro {
	background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
	padding: 2rem;
	border-radius: 12px;
	margin-bottom: 3rem;
	border-left: 4px solid var(--oz-energy-orange);
}

.oz-legal-intro p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: var(--oz-charcoal-black);
	margin: 0;
	font-weight: 500;
}

.oz-legal-section {
	background: #ffffff;
	margin-bottom: 2rem;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
	border: 1px solid #e8eaed;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.oz-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(44, 62, 80, 0.12);
}

.oz-legal-section h2 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--oz-steel-blue);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--oz-energy-orange);
	position: relative;
}

.oz-legal-section h2::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 60px;
	height: 2px;
	background: var(--oz-steel-blue);
}

.oz-legal-section h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--oz-steel-blue);
	margin: 1.5rem 0 1rem 0;
}

.oz-legal-section p {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--oz-charcoal-black);
	margin-bottom: 1.2rem;
}

.oz-legal-section ul {
	margin-left: 0;
	padding-left: 0;
	list-style: none;
	margin-bottom: 1.5rem;
}

.oz-legal-section ul li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 0.8rem;
	line-height: 1.6;
	color: var(--oz-charcoal-black);
}

.oz-legal-section ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--oz-energy-orange);
	font-weight: bold;
	font-size: 1.1rem;
}

.oz-legal-section ul li strong {
	color: var(--oz-steel-blue);
	font-weight: 600;
}

.oz-contact-box {
	background: linear-gradient(135deg, #f1f8ff 0%, #e8f4f8 100%);
	border: 2px solid var(--oz-steel-blue);
	border-radius: 8px;
	padding: 1.5rem;
	margin: 1.5rem 0;
	position: relative;
}

.oz-contact-box p {
	margin-bottom: 0.5rem;
	color: var(--oz-charcoal-black);
	font-weight: 500;
	word-wrap: break-word;
}

.oz-contact-box p:last-child {
	margin-bottom: 0;
}

.oz-legal-navigation {
	text-align: center;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #e8eaed;
}

.oz-legal-section a {
	color: var(--oz-energy-orange);
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.oz-legal-section a:hover {
	color: var(--oz-steel-blue);
	text-decoration: underline;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
	.oz-legal-header h1 {
		font-size: 2rem;
	}

	.oz-legal-section {
		padding: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.oz-legal-section h2 {
		font-size: 1.5rem;
	}

	.oz-legal-intro {
		padding: 1.5rem;
	}

	.oz-contact-box {
		padding: 1rem;
	}
}

@media (max-width: 480px) {
	.oz-legal-header h1 {
		font-size: 1.5rem;
	}

	.oz-legal-section {
		padding: 1rem;
	}

	.oz-legal-section h2 {
		font-size: 1.3rem;
	}

	.oz-legal-intro {
		padding: 1rem;
	}
}
