:root {
	--ih-color-primary: #8b5cf6;
	--ih-color-primary-light: #a78bfa;
	--ih-color-primary-dark: #7c3aed;
	--ih-color-secondary: #f97316;
	--ih-color-accent: #d946ef;
	--ih-color-background: #fff;
	--ih-color-card: #f1f0fb;
	--ih-color-card-hover: #e5deff;
	--ih-color-text: #221f26;
	--ih-color-text-light: #403e43;
	--ih-color-text-lighter: #8a898c;
	--ih-color-border: #e5deff;
	--ih-color-error: #ea384c;

	--ih-font-family-main: 'Montserrat', sans-serif;
	--ih-font-family-secondary: 'Roboto', sans-serif;

	--ih-transition-fast: 0.2s ease;
	--ih-transition-normal: 0.3s ease;
	--ih-transition-slow: 0.5s ease;

	--ih-border-radius-sm: 4px;
	--ih-border-radius-md: 8px;
	--ih-border-radius-lg: 16px;

	--ih-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.08);
	--ih-shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
	--ih-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--ih-font-family-main);
	background-color: var(--ih-color-background);
	color: var(--ih-color-text);
	line-height: 1.6;
}

a {
	text-decoration: none;
	color: var(--ih-color-primary);
	transition: color var(--ih-transition-fast);
}

a:hover {
	color: var(--ih-color-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: 0.5rem;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.25rem;
}

h3 {
	font-size: 1.5rem;
}

h4 {
	font-size: 1.25rem;
}

p {
	margin-bottom: 1rem;
}

img {
	max-width: 100%;
	height: auto;
}

ul {
	list-style: none;
}

.ih-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.ih-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: var(--ih-shadow-sm);
	z-index: 100;
	padding: 1rem 0;
	transition: all var(--ih-transition-normal);
}

.ih-header .ih-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ih-logo a {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--ih-color-text);
}

.ih-logo span {
	color: var(--ih-color-primary);
}

.ih-menu {
	display: flex;
	gap: 2rem;
}

.ih-menu li a {
	color: var(--ih-color-text);
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
}

.ih-menu li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: var(--ih-color-primary);
	transition: width var(--ih-transition-normal);
}

.ih-menu li a:hover {
	color: var(--ih-color-primary);
}

.ih-menu li a:hover::after {
	width: 100%;
}

.ih-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 20px;
	position: relative;
}

.ih-menu-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--ih-color-text);
	border-radius: 2px;
	transition: all var(--ih-transition-fast);
}

.ih-menu-toggle span:nth-child(1) {
	top: 0;
}

.ih-menu-toggle span:nth-child(2) {
	top: 9px;
}

.ih-menu-toggle span:nth-child(3) {
	bottom: 0;
}

/* Button Styles */
.ih-btn {
	display: inline-block;
	padding: 0.8rem 1.5rem;
	border-radius: var(--ih-border-radius-md);
	border: none;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all var(--ih-transition-fast);
	text-align: center;
}

.ih-btn-primary {
	background-color: var(--ih-color-primary);
	color: white;
	box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
}

.ih-btn-primary:hover {
	background-color: var(--ih-color-primary-dark);
	box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
	transform: translateY(-2px);
	color: white;
}

.ih-btn-outline {
	background-color: transparent;
	border: 2px solid var(--ih-color-primary);
	color: var(--ih-color-primary);
}

.ih-btn-outline:hover {
	background-color: var(--ih-color-primary);
	color: white;
	transform: translateY(-2px);
}

.ih-btn-full {
	width: 100%;
}

/* Hero Section */
.ih-hero {
	padding: 8rem 0 5rem;
	background: linear-gradient(135deg, #f1f0fb 0%, #e5deff 100%);
	overflow: hidden;
}

.ih-hero .ih-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ih-hero-content {
	flex: 1;
}

.ih-hero-content h1 {
	font-size: 3.5rem;
	line-height: 1.1;
	margin-bottom: 1rem;
	background: linear-gradient(
		to right,
		var(--ih-color-primary),
		var(--ih-color-accent)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}

.ih-hero-content h2 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--ih-color-card-hover);
}

.ih-hero-content p {
	font-size: 1.1rem;
	color: var(--ih-color-card-hover);
	margin-bottom: 2rem;

	text-align: center;
}

.ih-hero-cta {
	display: flex;
	gap: 1rem;
}

.ih-hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
}

.ih-hero-image img {
	max-width: 90%;
	border-radius: var(--ih-border-radius-lg);
	box-shadow: var(--ih-shadow-lg);
	transform: perspective(1000px) rotateY(-5deg);
	transition: transform var(--ih-transition-normal);
}

.ih-hero-image img:hover {
	transform: perspective(1000px) rotateY(0);
}

/* Section Headers */
.ih-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.ih-section-header h2 {
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.ih-section-header h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background: linear-gradient(
		to right,
		var(--ih-color-primary),
		var(--ih-color-accent)
	);
	margin: 0.5rem auto 0;
	border-radius: 10px;
}

.ih-section-header p {
	font-size: 1.2rem;
	color: var(--ih-color-text-light);
	max-width: 700px;
	margin: 0 auto;
}

/* About Section */
.ih-about {
	padding: 5rem 0;
}

.ih-about-content {
	display: flex;
	gap: 4rem;
	align-items: center;
}

.ih-about-image {
	flex: 1;
}

.ih-about-image img {
	border-radius: var(--ih-border-radius-lg);
	box-shadow: var(--ih-shadow-md);
}

.ih-about-text {
	flex: 1;
}

.ih-about-text h3 {
	margin-bottom: 1.5rem;
}

.ih-about-text p {
	margin-bottom: 1.5rem;
	color: var(--ih-color-text-light);
}

.ih-feature-list {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

.ih-feature-list li {
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.ih-feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--ih-color-primary);
	font-weight: bold;
}

/* Benefits Section */
.ih-benefits {
	padding: 5rem 0;
	background-color: var(--ih-color-card);
}

.ih-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.ih-benefit-card {
	background-color: white;
	border-radius: var(--ih-border-radius-md);
	padding: 2rem;
	box-shadow: var(--ih-shadow-sm);
	transition: all var(--ih-transition-normal);
	text-align: center;
}

.ih-benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ih-shadow-md);
}

.ih-benefit-icon {
	width: 80px;
	height: 80px;
	background-color: var(--ih-color-card-hover);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.ih-benefit-icon img {
	width: 40px;
	height: 40px;
}

.ih-benefit-card h3 {
	margin-bottom: 1rem;
}

.ih-benefit-card p {
	color: var(--ih-color-card-hover);
}

.ih-achievement-content h3 {
	text-align: center;
}

/* Testimonials Section */
.ih-testimonials {
	padding: 5rem 0;
}

.ih-testimonial-slider {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.ih-testimonial {
	display: none;
}

.ih-testimonial.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.ih-testimonial-content {
	background-color: white;
	border-radius: var(--ih-border-radius-lg);
	padding: 2.5rem;
	box-shadow: var(--ih-shadow-md);
	position: relative;
}

.ih-testimonial-content::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 5rem;
	color: var(--ih-color-primary-light);
	opacity: 0.2;
	font-family: serif;
	line-height: 1;
}

.ih-testimonial-content p {
	font-size: 1.1rem;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.ih-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ih-testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid var(--ih-color-primary-light);
}

.ih-testimonial-author h4 {
	margin-bottom: 0.25rem;
}

.ih-testimonial-author p {
	margin-bottom: 0;
	color: var(--ih-color-text-lighter);
	font-style: normal;
	font-size: 0.9rem;
}

.ih-testimonial-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 2rem;
	gap: 1rem;
}

.ih-testimonial-btn {
	background: var(--ih-color-primary-light);
	border: 1px solid var(--ih-color-border);
	color: var(--ih-color-text);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--ih-transition-fast);
}

.ih-testimonial-btn:hover {
	background-color: var(--ih-color-primary);
	color: white;
	border-color: var(--ih-color-primary);
}

.ih-testimonial-dots {
	display: flex;
	gap: 0.5rem;
}

.ih-testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--ih-color-background);
	cursor: pointer;
	transition: all var(--ih-transition-fast);
}

.ih-testimonial-dot.active {
	background-color: var(--ih-color-primary);
	transform: scale(1.2);
}

/* Team Section */
.ih-team {
	padding: 5rem 0;
	background-color: var(--ih-color-card);
}

.ih-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.ih-team-member {
	background-color: white;
	border-radius: var(--ih-border-radius-md);
	overflow: hidden;
	box-shadow: var(--ih-shadow-sm);
	transition: all var(--ih-transition-normal);
}

.ih-team-member:hover {
	transform: translateY(-5px);
	box-shadow: var(--ih-shadow-md);
}

.ih-team-member-image {
	height: 250px;
	overflow: hidden;
}

.ih-team-member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--ih-transition-normal);
}

.ih-team-member:hover .ih-team-member-image img {
	transform: scale(1.05);
}

.ih-team-member-info {
	padding: 1.5rem;
}

.ih-team-member-info h3 {
	margin-bottom: 0.5rem;
}

.ih-team-member-title {
	color: var(--ih-color-primary);
	font-weight: 600;
	margin-bottom: 1rem;
}

.ih-team-member-bio {
	color: var(--ih-color-text-light);
	margin-bottom: 1rem;
}

.ih-team-member-social {
	display: flex;
	gap: 1rem;
}

.ih-social-link {
	font-size: 0.9rem;
}

/* Register Section */
.ih-register {
	padding: 5rem 0;
	background: linear-gradient(135deg, #f1f0fb 0%, #e5deff 100%);
}

.ih-register-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.ih-register-text .ih-section-header {
	text-align: left;
}

.ih-register-text .ih-section-header h2::after {
	margin-left: 0;
}

.ih-register-features {
	margin-top: 2rem;
}

.ih-register-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ih-register-feature-icon {
	width: 30px;
	height: 30px;
	background-color: var(--ih-color-primary);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
}

.ih-register-feature p {
	margin-bottom: 0;
}

.ih-register-form-container {
	background-color: white;
	border-radius: var(--ih-border-radius-lg);
	padding: 2.5rem;
	box-shadow: var(--ih-shadow-md);
}

.ih-form-group {
	margin-bottom: 1.5rem;
}

.ih-form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.ih-form-group input,
.ih-form-group select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--ih-color-border);
	border-radius: var(--ih-border-radius-sm);
	font-family: var(--ih-font-family-main);
	transition: border-color var(--ih-transition-fast);
}

.ih-form-group input:focus,
.ih-form-group select:focus {
	outline: none;
	border-color: var(--ih-color-primary);
}

.ih-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.ih-checkbox-group input {
	width: auto;
	margin-top: 0.25rem;
}

.ih-checkbox-group label {
	margin-bottom: 0;
	font-weight: normal;
}

.ih-error-message {
	display: none;
	color: var(--ih-color-error);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

/* Map Section */
.ih-map-section {
	padding: 5rem 0;
}

.ih-map-container {
	height: 400px;
	border-radius: var(--ih-border-radius-md);
	overflow: hidden;
	box-shadow: var(--ih-shadow-md);
}

/* Map Section */
.ih-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ih-map {
		height: 400px;
	}
}

.ih-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ih-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ih-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* Footer */
.ih-footer {
	background-color: var(--ih-color-text);
	color: white;
	padding: 5rem 0 2rem;
}

.ih-footer-top {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.ih-footer-logo a {
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	display: inline-block;
}

.ih-footer-logo p {
	color: #ccc;
	margin-top: 1rem;
}

.ih-footer-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.ih-footer-section h4 {
	color: white;
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.ih-footer-section ul {
	padding: 0;
}

.ih-footer-section li {
	margin-bottom: 0.5rem;
}

.ih-footer-section a {
	color: #ccc;
	transition: color var(--ih-transition-fast);
}

.ih-footer-section a:hover {
	color: var(--ih-color-primary-light);
}

.ih-footer-section p {
	color: #ccc;
	margin-bottom: 0.5rem;
}

.ih-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ih-footer-subscribe {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 1rem;
}

.ih-footer-subscribe input {
	flex: 1;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: 5px;
}

.ih-footer-subscribe .ih-btn {
	border-radius: 5px;
	background-color: var(--ih-color-primary);
	color: white;
}

.ih-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ih-disclaimer {
	font-size: 0.875rem;
	color: #999;
	max-width: 800px;
	margin: 1rem auto 0;
}

/* Cookie Popup */
.ih-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 500px;
	background-color: white;
	border-radius: var(--ih-border-radius-md);
	padding: 20px;
	box-shadow: var(--ih-shadow-md);
	z-index: 1000;
	display: none;
}

.ih-cookie-content p {
	margin-bottom: 15px;
}

.ih-cookie-buttons {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.ih-hero-content h1 {
		font-size: 2.8rem;
	}

	.ih-about-content,
	.ih-register-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ih-footer-top,
	.ih-footer-links {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.ih-menu {
		display: none;
	}

	.ih-menu-toggle {
		display: block;
	}

	.ih-menu.active {
		display: flex;
		flex-direction: column;
		position: fixed;
		top: 100%;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: white;
		padding: 6rem 2rem 2rem;
		z-index: 99;
	}

	.ih-menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(7px, 8px);
	}

	.ih-menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.ih-menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -6px);
	}

	.ih-hero .ih-container {
		flex-direction: column;
	}

	.ih-hero-image {
		order: -1;
		margin-bottom: 2rem;
	}

	.ih-team-grid {
		grid-template-columns: 1fr;
	}

	.ih-hero {
		padding: 6rem 0 3rem;
	}

	.ih-footer-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.ih-hero-content h1 {
		font-size: 2.2rem;
	}

	.ih-hero-content h2 {
		font-size: 1.2rem;
	}

	.ih-hero-cta {
		flex-direction: column;
	}

	.ih-cookie-buttons {
		flex-direction: column;
	}

	.ih-cookie-popup {
		width: calc(100% - 30px);
		bottom: 15px;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.ih-hero {
	position: relative;
	min-height: 100vh;
	background: url('assets/ih-hero.webp') no-repeat center center/cover;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-align: center;
	overflow: hidden;
}

.ih-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 31, 44, 0.8) 0%,
		rgba(26, 31, 44, 0.6) 100%
	);
}

.ih-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.ih-hero-content button {
	width: 100%;
	margin: 0 auto;
	max-width: max-content;
	text-align: center;
}

.ih-hero h1 {
	font-size: 4rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.ih-hero h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease 0.2s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.ih-hero p {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	animation: fadeInUp 1s ease 0.4s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.ih-hero-stats {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-bottom: 3rem;
	animation: fadeInUp 1s ease 0.6s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.ih-stat {
	display: flex;
	flex-direction: column;
}

.ih-stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--ih-color-secondary);
}

.ih-stat-label {
	font-size: 1rem;
	opacity: 0.8;
}

.ih-hero-cta {
	padding: 1rem 3rem;
	font-size: 1.2rem;
	background: var(--ih-color-secondary);
	border: none;
	border-radius: 50px;
	color: white;
	cursor: pointer;
	transition: transform 0.3s ease;
	animation: fadeInUp 1s ease 0.8s;
	opacity: 0;
	animation-fill-mode: forwards;
}

.ih-hero-cta:hover {
	transform: translateY(-5px);
}

.ih-about-webinar {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f1f0fb 0%, #e5deff 100%);
}

.ih-webinar-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

.ih-webinar-card {
	background: white;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	margin-bottom: 2rem;
}

.ih-webinar-card h3 {
	color: var(--ih-color-primary);
	margin-bottom: 1.5rem;
}

.ih-webinar-card ul {
	list-style: none;
}

.ih-webinar-card li {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	position: relative;
}

.ih-webinar-card li:before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--ih-color-secondary);
}

.ih-webinar-details {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.ih-detail {
	display: flex;
	gap: 1rem;
	align-items: center;
}

.ih-icon {
	font-size: 2rem;
}

.ih-webinar-features {
	position: relative;
	width: 100%;
	height: 100%;
}

.ih-webinar-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 2rem;
}

.ih-features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.ih-feature {
	background: white;
	padding: 1.5rem;
	border-radius: 15px;
	text-align: center;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.ih-feature p {
	margin-bottom: 0;
}

.ih-why-join {
	padding: 6rem 0;
	background: linear-gradient(
		135deg,
		var(--ih-color-primary) 0%,
		var(--ih-color-primary-dark) 100%
	);
	color: white;
}

.ih-benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ih-benefit-card {
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	transition: transform 0.3s ease;
}

.ih-benefit-card:hover {
	transform: translateY(-10px);
}

.ih-benefit-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.ih-achievement {
	margin-top: 4rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 20px;
	padding: 3rem;
}

.ih-achievement-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.ih-achievement-item {
	text-align: center;
}

.ih-achievement-item span {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--ih-color-secondary);
	display: block;
	margin-bottom: 0.5rem;
}

.ih-testimonials {
	padding: 6rem 0;
	background: linear-gradient(135deg, #f1f0fb 0%, #e5deff 100%);
}

.ih-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ih-testimonial {
	padding: 2rem;
}

.ih-testimonial-content {
	font-style: italic;
	margin-bottom: 2rem;
	position: relative;
}

.ih-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ih-testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.ih-team {
	padding: 6rem 0;
	background: white;
}

.ih-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

.ih-team-member {
	background: linear-gradient(135deg, #f1f0fb 0%, #e5deff 100%);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.ih-team-member:hover {
	transform: translateY(-10px);
}

.ih-member-image {
	height: 300px;
	overflow: hidden;
}

.ih-member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	transition: transform 0.3s ease;
}

.ih-team-member:hover .ih-member-image img {
	transform: scale(1.1);
}

.ih-member-info {
	padding: 2rem;
}

.ih-member-info h3 {
	color: var(--ih-color-primary);
	margin-bottom: 0.5rem;
}

.ih-member-info p {
	color: var(--ih-color-text-light);
	margin-bottom: 1rem;
}

.ih-member-credentials {
	display: flex;
	gap: 1rem;
	flex-direction: column;
	font-size: 0.9rem;
}

.ih-member-credentials span {
	background: white;
	padding: 0.5rem 1rem;
	text-align: center;
	border-radius: 20px;
	color: var(--ih-color-primary);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1024px) {
	.ih-hero h1 {
		font-size: 3rem;
	}

	.ih-hero h2 {
		font-size: 1.5rem;
	}

	.ih-webinar-content {
		grid-template-columns: 1fr;
	}

	.ih-achievement-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ih-hero-stats {
		flex-direction: column;
		gap: 2rem;
	}

	.ih-webinar-details {
		grid-template-columns: 1fr;
	}

	.ih-achievement-stats,
	.ih-features-grid,
	.ih-footer-top {
		grid-template-columns: 1fr;
	}

	.ih-hero h1 {
		font-size: 1.5rem;
	}
}

@media (max-width: 578px) {
	.ih-team-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.ih-testimonial {
		padding: 0;
	}
}

.ih-legal-hero {
	background: linear-gradient(135deg, #f1f0fb 0%, #d6bcfa 100%);
	padding: 80px 0 40px;
	text-align: center;
	margin-top: 80px;
	border-bottom: 1px solid #e5deff;
}

.ih-legal-hero h1 {
	font-size: 2.5rem;
	color: #1a1f2c;
	margin-bottom: 10px;
	font-family: 'Montserrat', sans-serif;
}

.ih-legal-hero p {
	color: #8e9196;
	font-size: 1.1rem;
}

.ih-legal-content {
	padding: 60px 0;
	background-color: #ffffff;
}

.ih-legal-document {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	line-height: 1.6;
}

.ih-legal-section {
	margin-bottom: 40px;
}

.ih-legal-section h2 {
	color: #1a1f2c;
	font-size: 1.8rem;
	margin: 30px 0 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #e5deff;
	font-family: 'Montserrat', sans-serif;
}

.ih-legal-section h3 {
	color: #403e43;
	font-size: 1.4rem;
	margin: 25px 0 15px;
	font-family: 'Montserrat', sans-serif;
}

.ih-legal-section p {
	margin-bottom: 20px;
	color: #403e43;
	font-size: 1.1rem;
}

.ih-legal-section ul {
	margin-bottom: 25px;
	padding-left: 20px;
}

.ih-legal-section li {
	margin-bottom: 10px;
	color: #403e43;
	position: relative;
	padding-left: 20px;
}

.ih-legal-section li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	background-color: #9b87f5;
	border-radius: 50%;
}

.ih-legal-table {
	margin: 30px 0;
	overflow-x: auto;
}

.ih-legal-table table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background: #f6f6f7;
	border-radius: 8px;
}

.ih-legal-table th,
.ih-legal-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e5deff;
}

.ih-legal-table th {
	background: #9b87f5;
	color: white;
	font-weight: 600;
}

.ih-legal-table tr:hover {
	background-color: #f1f0fb;
}

.ih-legal-back {
	text-align: center;
	margin: 40px 0;
}

.ih-legal-back .ih-btn-primary {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(135deg, #9b87f5 0%, #7e69ab 100%);
	color: white;
	text-decoration: none;
	border-radius: 30px;
	font-weight: 600;
	transition: transform 0.3s ease;
}

.ih-legal-back .ih-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(155, 135, 245, 0.3);
}

.ih-legal-contact {
	background: #f1f0fb;
	padding: 30px;
	border-radius: 8px;
	margin-top: 40px;
}

.ih-legal-contact h4 {
	color: #1a1f2c;
	margin-bottom: 15px;
	font-size: 1.2rem;
}

.ih-legal-contact p {
	margin: 5px 0;
}

@media (max-width: 768px) {
	.ih-legal-hero {
		padding: 60px 0 30px;
	}

	.ih-legal-hero h1 {
		font-size: 2rem;
	}

	.ih-legal-section h2 {
		font-size: 1.5rem;
	}

	.ih-legal-content {
		padding: 30px 0;
	}

	.ih-legal-table {
		margin: 20px -20px;
		width: calc(100% + 40px);
	}
}
