:root {
	--color-primary: #9cc6db;
	--color-secondary: #fcf6d9;
	--color-tertiary: #00c8cf;
	--color-quaternary: #7dcbdd;
	--color-accent: #56e8d2;
	--color-white: #ffffff;
	--color-gray-light: #f8f9fa;
	--color-gray: #6c757d;
	--color-dark: #25444a;

	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-primary);
	font-size: 1.125rem;
	line-height: 1.7;
	color: var(--color-dark);
	background: var(--color-white);
	overflow-x: hidden;
}

.navbar-fixed {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(156, 198, 219, 0.2);
	z-index: 1000;
	padding: 0.8rem 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	transition: var(--transition);
}

.navbar-brand img {
	transition: var(--transition);
}

.navbar-brand img:hover {
	transform: scale(1.02);
}

.navbar-nav {
	align-items: center;
	gap: 0.5rem;
}

.nav-link {
	color: var(--color-dark);
	font-weight: 500;
	padding: 0.5rem 1rem;
	transition: var(--transition);
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--color-tertiary);
	transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 60%;
}

.nav-link:hover,
.nav-link.active {
	color: var(--color-tertiary);
}

.btn-cta {
	background: var(--color-tertiary);
	color: var(--color-white);
	border: none;
	padding: 0.6rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--transition);
}

.btn-cta:hover {
	background: var(--color-accent);
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(207, 75, 0, 0.3);
}

.navbar-toggler {
	border: none;
	padding: 0.5rem;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 10rem 0 5rem;
	background: linear-gradient(
		135deg,
		rgba(156, 198, 219, 0.08) 0%,
		rgba(252, 246, 217, 0.12) 100%
	);
	position: relative;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: linear-gradient(
			rgba(156, 198, 219, 0.03) 1px,
			transparent 1px
		),
		linear-gradient(90deg, rgba(156, 198, 219, 0.03) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
}

.hero-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	color: var(--color-dark);
}

.hero-subtitle {
	font-size: 1.25rem;
	color: var(--color-gray);
	margin-bottom: 2rem;
}

.hero-list {
	list-style: none;
	margin-bottom: 2rem;
}

.hero-list li {
	padding: 0.5rem 0;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.1rem;
}

.hero-list i {
	color: var(--color-tertiary);
	font-size: 1.2rem;
}

.hero-cta {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--color-tertiary);
	border: none;
	color: var(--color-white);
	padding: 0.8rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--transition);
}

.btn-primary:hover {
	background: var(--color-accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(207, 75, 0, 0.25);
}

.btn-outline-primary {
	background: transparent;
	border: 2px solid var(--color-tertiary);
	color: var(--color-tertiary);
	padding: 0.8rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	transition: var(--transition);
}

.btn-outline-primary:hover {
	background: var(--color-tertiary);
	color: var(--color-white);
	transform: translateY(-2px);
}

.hero-section__visual img {
	width: 100%;
	border-radius: 16px;
	box-shadow: 0 16px 48px rgba(156, 198, 219, 0.25);
	transition: var(--transition);
}

.hero-section__visual img:hover {
	transform: scale(1.02);
	box-shadow: 0 20px 60px rgba(156, 198, 219, 0.35);
}

.section-header {
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-dark);

	display: inline-block;
}

.text-center .section-header h2::after {
	left: 50%;
	transform: translateX(-50%);
}

.section-subtitle {
	font-size: 1.2rem;
	color: var(--color-gray);
}

.progress-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.progress-card {
	background: var(--color-gray-light);
	border-radius: 16px;
	padding: 1.5rem;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

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

.progress-label {
	position: absolute;
	top: 1.5rem;
	left: 1.5rem;
	background: var(--color-tertiary);
	color: var(--color-white);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
}

.progress-card img {
	width: 100%;
	border-radius: 12px;
	margin-top: 1rem;
}

.progress-caption {
	margin-top: 1rem;
	text-align: center;
	font-weight: 500;
	color: var(--color-gray);
}

.gallery-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(252, 246, 217, 0.3) 0%,
		rgba(221, 186, 125, 0.1) 100%
	);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.gallery-item {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	transition: var(--transition);
}

.gallery-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.gallery-item:hover img {
	transform: scale(1.05);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: var(--color-white);
	padding: 2rem 1.5rem;
	transform: translateY(100%);
	transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-overlay h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.gallery-overlay p {
	font-size: 1rem;
	margin: 0;
}

.method-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.method-timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.method-step {
	background: var(--color-gray-light);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	transition: var(--transition);
	border: 2px solid transparent;
}

.method-step:hover {
	border-color: var(--color-tertiary);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(207, 75, 0, 0.15);
}

.method-number {
	width: 60px;
	height: 60px;
	background: var(--color-tertiary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
}

.method-step h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-dark);
}

.method-step p {
	color: var(--color-gray);
	margin-bottom: 1rem;
}

.method-output {
	background: var(--color-primary);
	color: var(--color-dark);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-block;
}

.path-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(156, 198, 219, 0.15) 0%,
		rgba(252, 246, 217, 0.2) 100%
	);
}

.path-timeline {
	max-width: 100%;
	margin: 3rem auto 0;
}

.path-phase {
	position: relative;
	padding: 2rem 0 2rem 5rem;
}

.path-marker {
	position: absolute;
	left: 0;
	top: 2rem;
	width: 100%;
	height: 60px;
	background: var(--color-tertiary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	border: 4px solid var(--color-white);
	box-shadow: 0 4px 12px rgba(207, 75, 0, 0.3);
}

.path-content {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.path-content:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateX(10px);
}

.path-content h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-dark);
}

.path-content h3 span {
	color: var(--color-gray);
	font-size: 1rem;
	font-weight: 500;
}

.path-content p {
	color: var(--color-gray);
	margin-bottom: 1rem;
}

.path-result {
	background: var(--color-secondary);
	color: var(--color-dark);
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-block;
}

.exercises-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.exercises-table {
	margin-top: 3rem;
	overflow-x: auto;
}

.exercises-table table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.exercises-table thead {
	background: var(--color-tertiary);
	color: var(--color-white);
}

.exercises-table th {
	padding: 1.5rem;
	text-align: left;
	font-weight: 600;
	font-size: 1.1rem;
}

.exercises-table td {
	padding: 1.5rem;
	border-bottom: 1px solid var(--color-gray-light);
	transition: var(--transition);
}

.exercises-table tbody tr:hover {
	background: rgba(156, 198, 219, 0.08);
}

.exercises-table tbody tr:last-child td {
	border-bottom: none;
}

.materials-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(252, 246, 217, 0.3) 0%,
		rgba(221, 186, 125, 0.1) 100%
	);
}

.materials-card {
	background: var(--color-white);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	height: 100%;
}

.materials-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.materials-card--optional {
	border: 2px solid var(--color-quaternary);
}

.materials-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--color-tertiary);
}

.materials-list {
	list-style: none;
	margin-bottom: 1.5rem;
}

.materials-list li {
	padding: 0.8rem 0;
	display: flex;
	align-items: center;
	gap: 1rem;
	border-bottom: 1px solid var(--color-gray-light);
}

.materials-list li:last-child {
	border-bottom: none;
}

.materials-list i {
	color: var(--color-tertiary);
	font-size: 1.2rem;
	min-width: 24px;
}

.materials-note {
	font-style: italic;
	color: var(--color-gray);
	margin: 0;
}

.materials-important {
	text-align: center;
	margin-top: 3rem;
	padding: 2rem;
	background: var(--color-white);
	border-radius: 16px;
	border-left: 4px solid var(--color-tertiary);
}

.materials-important p {
	margin: 0;
	font-size: 1.1rem;
}

.faq-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.faq-accordion {
	max-width: 900px;
	margin: 3rem auto 0;
}

.faq-item {
	background: var(--color-gray-light);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: var(--transition);
}

.faq-item[open] {
	background: var(--color-white);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
	padding: 1.5rem;
	font-size: 1.2rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--color-dark);
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--color-tertiary);
}

.faq-question::after {
	content: '+';
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-tertiary);
	transition: var(--transition);
}

.faq-item[open] .faq-question::after {
	content: '−';
}

.faq-answer {
	padding: 0 1.5rem 1.5rem;
	color: var(--color-gray);
	line-height: 1.8;
}

.faq-answer p {
	margin: 0;
}

.contact-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(156, 198, 219, 0.08) 0%,
		rgba(252, 246, 217, 0.12) 100%
	);
}

.contact-intro {
	font-size: 1.2rem;
	color: var(--color-gray);
	margin-bottom: 2rem;
}

.contact-steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.contact-step {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.contact-step-number {
	width: 50px;
	height: 50px;
	background: var(--color-tertiary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 700;
	flex-shrink: 0;
}

.contact-step p {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 500;
}

.contact-form-wrapper {
	background: var(--color-white);
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: var(--color-dark);
}

.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 2px solid var(--color-gray-light);
	border-radius: 8px;
	font-size: 1rem;
	transition: var(--transition);
	font-family: var(--font-primary);
}

.form-control:focus {
	outline: none;
	border-color: var(--color-tertiary);
	box-shadow: 0 0 0 3px rgba(207, 75, 0, 0.1);
}

.error-message {
	display: block;
	margin-top: 0.5rem;
	color: #dc3545;
	font-size: 0.9rem;
}

.footer {
	background: var(--color-dark);
	color: var(--color-white);
	padding: 3rem 0 1rem;
}

.footer h3,
.footer h4 {
	color: var(--color-white);
	margin-bottom: 1.5rem;
}

.footer p {
	color: rgba(255, 255, 255, 0.7);
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.8rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--color-white);
	padding-left: 5px;
}

.footer-bottom {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
}

.cookie-wrapper {
	position: fixed;
	bottom: -100%;
	left: 50%;
	transform: translateX(-50%);
	max-width: 500px;
	width: 90%;
	background: var(--color-white);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	padding: 2rem;
	z-index: 9999;
	transition: bottom 0.5s ease;
}

.cookie-wrapper.show {
	bottom: 2rem;
}

.cookie-wrapper.hidden {
	display: none;
}

.cookie-content h4 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	color: var(--color-dark);
}

.cookie-content p {
	color: var(--color-gray);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.6;
}

.cookie-content a {
	color: var(--color-tertiary);
	text-decoration: none;
}

.cookie-content a:hover {
	text-decoration: underline;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.cookie-button {
	flex: 1;
	min-width: 120px;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: var(--transition);
	font-family: var(--font-primary);
}

.cookie-button:first-child {
	background: var(--color-tertiary);
	color: var(--color-white);
}

.cookie-button:first-child:hover {
	background: var(--color-accent);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(207, 75, 0, 0.3);
}

.cookie-button--secondary {
	background: var(--color-gray-light);
	color: var(--color-dark);
}

.cookie-button--secondary:hover {
	background: var(--color-gray);
	color: var(--color-white);
}

.page-hero {
	padding: 8rem 0 3rem;
	background: linear-gradient(
		135deg,
		rgba(156, 198, 219, 0.1) 0%,
		rgba(252, 246, 217, 0.15) 100%
	);
	text-align: center;
}

.page-hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--color-dark);
}

.page-hero-subtitle {
	font-size: 1.2rem;
	color: var(--color-gray);
}

.standard-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.standard-table {
	margin-top: 3rem;
	overflow-x: auto;
}

.standard-table table {
	width: 100%;
	border-collapse: collapse;
	background: var(--color-white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.standard-table thead {
	background: var(--color-primary);
}

.standard-table th {
	padding: 1.5rem;
	text-align: left;
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--color-dark);
}

.standard-table td {
	padding: 1.5rem;
	border-bottom: 1px solid var(--color-gray-light);
}

.standard-table tbody tr:hover {
	background: rgba(156, 198, 219, 0.08);
}

.standard-table tbody tr:last-child td {
	border-bottom: none;
}

.value-swatches {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.swatch {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-section {
	padding: 7rem 0;
	background: linear-gradient(
		135deg,
		rgba(252, 246, 217, 0.3) 0%,
		rgba(221, 186, 125, 0.1) 100%
	);
}

.feedback-points {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.feedback-points h3 {
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	color: var(--color-dark);
}

.feedback-list {
	list-style: none;
}

.feedback-list li {
	padding: 1rem 0;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	border-bottom: 1px solid var(--color-gray-light);
}

.feedback-list li:last-child {
	border-bottom: none;
}

.feedback-list i {
	color: var(--color-tertiary);
	font-size: 1.2rem;
	margin-top: 0.2rem;
}

.feedback-visual {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feedback-visual img {
	width: 100%;
}

.manifesto-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.manifesto-content {
	margin-top: 3rem;
}

.manifesto-point {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
	margin-bottom: 3rem;
}

.manifesto-icon {
	width: 80px;
	height: 80px;
	background: var(--color-secondary);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.manifesto-icon i {
	font-size: 2rem;
	color: var(--color-tertiary);
}

.manifesto-text h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--color-dark);
}

.manifesto-text p {
	color: var(--color-gray);
	line-height: 1.8;
}

.process-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(156, 198, 219, 0.1) 0%,
		rgba(252, 246, 217, 0.15) 100%
	);
}

.process-flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.process-item {
	background: var(--color-white);
	padding: 2rem;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
	flex: 0 1 200px;
}

.process-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.process-number {
	width: 60px;
	height: 60px;
	background: var(--color-tertiary);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

.process-item h3 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--color-dark);
}

.process-item p {
	color: var(--color-gray);
	font-size: 0.9rem;
	margin: 0;
}

.process-arrow {
	color: var(--color-quaternary);
	font-size: 2rem;
}

.studio-section {
	padding: 5rem 0;
	background: var(--color-white);
}

.studio-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.studio-item {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: var(--transition);
}

.studio-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.studio-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.contact-page-section {
	padding: 5rem 0;
}

.contact-info {
	background: var(--color-gray-light);
	padding: 2.5rem;
	border-radius: 16px;
	height: 100%;
}

.contact-info h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--color-dark);
}

.contact-info > p {
	color: var(--color-gray);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--color-tertiary);
	color: var(--color-white);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon i {
	font-size: 1.3rem;
}

.contact-details h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	color: var(--color-dark);
}

.contact-details a {
	color: var(--color-tertiary);
	text-decoration: none;
	transition: var(--transition);
}

.contact-details a:hover {
	color: var(--color-accent);
	text-decoration: underline;
}

.contact-details p {
	margin: 0;
	color: var(--color-gray);
	line-height: 1.6;
}

.legal-content {
	padding: 5rem 0;
}

.legal-content h2 {
	font-size: 2rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: var(--color-dark);
}

.legal-content h3 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 0.8rem;
	color: var(--color-tertiary);
}

.legal-content p {
	color: var(--color-gray);
	line-height: 1.8;
	margin-bottom: 1rem;
}

.legal-content ul {
	color: var(--color-gray);
	line-height: 1.8;
	margin-bottom: 1.5rem;
	padding-left: 2rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

.cookie-table {
	width: 100%;
	margin: 2rem 0;
	border-collapse: collapse;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	overflow: hidden;
}

.cookie-table thead {
	background: var(--color-primary);
}

.cookie-table th {
	padding: 1rem;
	text-align: left;
	font-weight: 600;
	color: var(--color-dark);
}

.cookie-table td {
	padding: 1rem;
	border-bottom: 1px solid var(--color-gray-light);
	color: var(--color-gray);
}

.cookie-table tbody tr:last-child td {
	border-bottom: none;
}

@media (max-width: 991px) {
	.hero-title {
		font-size: 2.5rem;
	}
	.section-header h2 {
		font-size: 2rem;
	}
	.hero-cta {
		flex-direction: column;
	}
	.btn-primary,
	.btn-outline-primary {
		width: 100%;
		text-align: center;
	}
	.process-arrow {
		display: none;
	}
	.manifesto-point {
		flex-direction: column;
		text-align: center;
	}
	.manifesto-icon {
		margin: 0 auto;
	}
	.path-timeline::before {
		left: 15px;
	}
	.path-phase {
		padding: 2rem 0 2rem 4rem;
	}
	.path-marker {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 2rem;
	}
	.hero-section {
		padding: 8rem 0 3rem;
	}
	.page-hero h1 {
		font-size: 2rem;
	}
	.section-header h2 {
		font-size: 1.8rem;
	}
	.method-timeline {
		grid-template-columns: 1fr;
	}
	.gallery-grid {
		grid-template-columns: 1fr;
	}
	.studio-gallery {
		grid-template-columns: 1fr;
	}
	.cookie-buttons {
		flex-direction: column;
	}
	.cookie-button {
		width: 100%;
	}
}
