:root {
    --blue: #afc5f3;
    --green: #b9e8b4;
    --red: #e7aaa5;
    --grey: #d8d8d8;
    --blue-accent: #88AEEF;
    --green-accent: #9ADE95;
    --red-accent: #D56A63;
    --grey-accent: #AFAFAF;
    --text: #2F3A45;
    --text-muted: #5a6570;
    --footer: #2F3A45;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 8px 30px rgba(47, 58, 69, 0.08);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    line-height: 1.75;
    background: white;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
	section,
	header {
		padding: 90px 0;
	}
	h1 {
		font-size: clamp(2rem, 5vw, 3rem);
		line-height: 1.2;
		margin-bottom: 20px;
		font-weight: 700;
	}
	h2 {
		font-size: clamp(1.6rem, 3vw, 2rem);
		margin-bottom: 25px;
		font-weight: 700;
	}
	h3 {
		margin-bottom: 15px;
		font-weight: 600;
	}
	p {
		margin-bottom: 15px;
	}
	a {
		text-decoration: none;
	}
	.section-label {
		font-size: 0.85rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.08em;
		color: var(--red-accent);
		margin-bottom: 8px;
	}
	nav {
		position: sticky;
		top: 0;
		z-index: 1000;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(8px);
		border-bottom: 1px solid #e5e7eb;
	}
	.nav-wrapper {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 15px 0;
	}
	.logo {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	.logo img {
		height: 55px;
		width: auto;
		margin-top: -12px;
	}
	.logo span {
		font-size: 1.1rem;
		font-weight: 600;
	}
	.nav-links {
		display: flex;
		gap: 25px;
	}
	.nav-links a {
		color: var(--text);
		font-weight: 500;
		transition: color 0.2s;
	}
	.nav-links a:hover {
		color: var(--red-accent);
	}
	.menu-toggle {
		display: none;
		background: none;
		border: none;
		font-size: 1.5rem;
		cursor: pointer;
		color: var(--text);
		padding: 4px 8px;
	}
	header {
		background: linear-gradient(135deg, var(--blue) 0%, #d4e2fb 100%);
	}
	.hero {
		display: grid;
		grid-template-columns: 1.2fr 0.8fr;
		gap: 60px;
		align-items: center;
	}
	.subtitle {
		font-size: 1.25rem;
		margin-bottom: 25px;
		color: var(--text-muted);
		font-weight: 500;
	}
	.hero-photo {
		display: flex;
		justify-content: center;
	}
	.hero-photo img {
		width: 100%;
		max-width: 340px;
		border-radius: 20px;
		box-shadow: var(--shadow);
		object-fit: cover;
		aspect-ratio: 4/5;
	}
	.btn {
		display: inline-block;
		background: var(--red-accent);
		color: white;
		padding: 14px 32px;
		border-radius: 10px;
		font-weight: 600;
		margin-top: 20px;
		transition: transform 0.2s, box-shadow 0.2s;
		box-shadow: 0 4px 14px rgba(213, 106, 99, 0.35);
	}
	.btn:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 20px rgba(213, 106, 99, 0.45);
	}
	.bg-grey {
		background: #f4f4f4;
	}
	.bg-green {
		background: linear-gradient(180deg, var(--green) 0%, #d4f5d0 100%);
	}
	.bg-red {
		background: linear-gradient(180deg, var(--red) 0%, #f5d4d1 100%);
	}
	.about-grid {
		display: grid;
		grid-template-columns: 1fr 320px;
		gap: 50px;
		align-items: start;
	}
	.about-highlight {
		background: white;
		padding: 28px;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		text-align: center;
	}
	.about-highlight .stat {
		font-size: 2.5rem;
		font-weight: 700;
		color: var(--red-accent);
		line-height: 1;
		margin-bottom: 8px;
	}
	.about-highlight p {
		margin-bottom: 0;
		color: var(--text-muted);
	}
	.cards {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		gap: 25px;
		margin-top: 30px;
	}
	.card {
		background: white;
		padding: 32px;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
		border-left: 4px solid var(--blue-accent);
	}
	.card-green {
		border-left-color: var(--green-accent);
	}
	.card-red {
		border-left-color: var(--red-accent);
	}
	.card-grey {
		border-left-color: var(--grey-accent);
	}
	.card-blue {
		border-left-color: var(--blue-accent);
	}
	.usp-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 25px;
	}
	.usp {
		background: white;
		border-radius: var(--radius);
		padding: 30px;
		box-shadow: var(--shadow);
		transition: transform 0.25s ease;
	}
	.usp h3 {
		color: var(--red-accent);
	}
	.visie-quote {
		font-size: 1.15rem;
		font-weight: 500;
		border-left: 4px solid var(--red-accent);
		padding-left: 24px;
		margin: 30px 0;
	}
	.contact-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 50px;
		align-items: start;
	}
	form {
		margin-top: 10px;
	}
	input,
	textarea {
		width: 100%;
		padding: 15px;
		margin-bottom: 15px;
		border: 1px solid #d1d5db;
		border-radius: 8px;
		font-size: 1rem;
		font-family: inherit;
		transition: border-color 0.2s, box-shadow 0.2s;
	}
	input:focus,
	textarea:focus {
		outline: none;
		border-color: var(--blue-accent);
		box-shadow: 0 0 0 3px rgba(136, 174, 239, 0.25);
	}
	button[type="submit"] {
		background: var(--red-accent);
		color: white;
		border: none;
		border-radius: 8px;
		padding: 14px 28px;
		cursor: pointer;
		font-size: 1rem;
		font-weight: 600;
		font-family: inherit;
		transition: transform 0.2s, opacity 0.2s;
	}
	button[type="submit"]:hover {
		transform: translateY(-2px);
		opacity: 0.95;
	}
	.contact-details {
		background: white;
		padding: 32px;
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}
	.contact-details h3 {
		margin-bottom: 20px;
	}
	.contact-item {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 16px;
		font-size: 1.05rem;
	}
	.contact-item a {
		color: var(--red-accent);
		font-weight: 500;
	}
	.contact-item a:hover {
		text-decoration: underline;
	}
	footer {
		background: var(--footer);
		color: white;
		text-align: center;
		padding: 40px;
		border-top: 4px solid var(--red-accent);
	}
	@media (max-width: 900px) {
		section,
		header {
			padding: 60px 0;
		}
		.hero,
		.about-grid,
		.contact-grid {
			grid-template-columns: 1fr;
		}
		.hero-photo {
			order: -1;
		}
		.hero-photo img {
			max-width: 280px;
		}
		.nav-links {
			display: none;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			background: white;
			flex-direction: column;
			padding: 20px;
			gap: 16px;
			border-bottom: 1px solid #e5e7eb;
			box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		}
		.nav-links.open {
			display: flex;
		}
		.menu-toggle {
			display: block;
		}
		nav .container {
			position: relative;
		}
	}