*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}

body{
	background: linear-gradient(180deg,#ffffff,#cccccc);
	background-attachment: fixed;
	background-repeat: no-repeat;
	font-family: "Roboto Condensed", sans-serif;
	color: #333333;
}

.project-page{
	width: min(1280px, 90%);
	margin: 0 auto;
	padding-top: 145px;
	padding-bottom: 90px;
}

.project-hero{
	text-align: center;
	margin-bottom: 50px;
}

.project-hero h1{
	font-family: "Times New Roman", serif;
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 700;
	color: #cc5200;
	line-height: 1.1;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.project-subtitle{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 24px;
}

.project-subtitle span{
	width: 34px;
	height: 1px;
	background: #111111;
}

.project-subtitle h2{
	font-family: "Roboto Condensed", sans-serif;
	font-size: clamp(15px, 1.6vw, 19px);
	font-weight: 350;
	color: #111111;
	line-height: 1.25;
}

.project-quote{
	width: min(900px, 100%);
	margin: 0 auto;
	font-family: "Imperial Script", cursive;
	font-size: clamp(30px, 3.6vw, 46px);
	font-weight: 600;
	font-style: oblique;
	color: #cc5200;
	line-height: 1.25;
}

.intro-text{
	width: min(1050px, 100%);
	margin: 0 auto 70px auto;
	text-align: center;
}

.intro-text p{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 20px;
	font-weight: 350;
	line-height: 1.65;
	color: #333333;
	margin-bottom: 18px;
}

.three-columns{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1.08fr 1fr;
	gap: 26px;
	align-items: stretch;
	margin-bottom: 95px;
}

.info-column{
	background: rgba(255,255,255,0.52);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border: 1px solid rgba(255,255,255,0.34);
	border-radius: 18px;
	box-shadow: 0 8px 22px rgba(0,0,0,0.09);
	padding: 30px 28px;
}

.center-column{
	background: linear-gradient(180deg,#006666,#004d4d);
	border: none;
}

.info-column h3{
	font-family: "Times New Roman", serif;
	font-size: 30px;
	font-weight: 700;
	color: #006666;
	text-align: center;
	margin-bottom: 24px;
}

.center-column h3{
	color: white;
}

.info-column ul{
	list-style: none;
}

.check-list li{
	position: relative;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 18px;
	font-weight: 350;
	color: white;
	line-height: 1.4;
	padding-left: 31px;
	margin-bottom: 16px;
}

.check-list li::before{
	content: "✓";
	position: absolute;
	left: 0;
	top: -1px;
	font-size: 21px;
	font-weight: 700;
	color: #ff8533;
}

.icon-list li{
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	align-items: flex-start;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 18px;
	font-weight: 350;
	color: #333333;
	line-height: 1.4;
	margin-bottom: 16px;
}

.icon-list i{
	font-size: 22px;
	color: #cc5200;
	padding-top: 2px;
}

.activities-section{
	width: 100%;
	margin-bottom: 90px;
}

.activities-section h2,
.themes-content h2,
.territory-text-section h2,
.vision-section h2{
	font-family: "Times New Roman", serif;
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 700;
	color: #006666;
	text-align: center;
	margin-bottom: 42px;
}

.activities-band{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	background: rgba(255,255,255,0.66);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	border: 1px solid rgba(0,102,102,0.14);
	border-radius: 12px;
	overflow: visible;
	margin-top: 35px;
}

.activity-item{
	position: relative;
	min-height: 285px;
	text-align: center;
	padding: 58px 18px 30px 18px;
	border-top: 6px solid #dd7000;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(255,255,255,0.5);
}

.activity-item:first-child{
	border-top-left-radius: 12px;
}

.activity-item:last-child{
	border-right: none;
	border-top-right-radius: 12px;
}

.activity-icon{
	position: absolute;
	top: -34px;
	left: 50%;
	width: 68px;
	height: 68px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateX(-50%);
	border-radius: 50%;
	background: linear-gradient(180deg,#cc5200,#ff8533);
	color: white;
	box-shadow: 0 8px 18px rgba(0,0,0,0.18);
	border: 2px solid rgba(255,255,255,0.7);
}

.activity-icon i{
	font-size: 30px;
	color: white;
}

.activity-item h3{
	font-family: "Times New Roman", serif;
	font-size: 21px;
	font-weight: 700;
	color: #006666;
	line-height: 1.2;
	margin-bottom: 14px;
}

.activity-item p{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 16px;
	font-weight: 350;
	color: #333333;
	line-height: 1.45;
}

.parallel-section{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 46px;
	align-items: center;
	margin-bottom: 90px;
}

.territory-text-section{
	width: 100%;
	text-align: right;
	padding: 10px 0;
}

.territory-text-section h2{
	text-align: right;
	margin-bottom: 28px;
}

.territory-text-section p{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 20px;
	font-weight: 350;
	color: #333333;
	line-height: 1.65;
	margin-bottom: 18px;
	text-align: right;
}

.themes-section{
	width: 100%;
}

.themes-content{
	width: 100%;
	margin: 0 auto;
	background: linear-gradient(180deg,#cc5200,#ff8533);
	border-radius: 20px;
	padding: 42px 40px;
	box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.themes-content h2{
	color: white;
	margin-bottom: 34px;
	text-align: left;
}

.themes-list{
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.themes-list li{
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 19px;
	font-weight: 400;
	color: white;
	line-height: 1.35;
}

.themes-list i{
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255,255,255,0.16);
	font-size: 18px;
	color: white;
	flex-shrink: 0;
}

.vision-section{
	width: min(1050px, 100%);
	margin: 0 auto;
	text-align: center;
	padding: 10px 0;
}

.vision-section h2{
	color: #cc5200;
}

.vision-section p{
	font-family: "Roboto Condensed", sans-serif;
	font-size: 21px;
	font-weight: 350;
	color: #333333;
	line-height: 1.65;
	margin-bottom: 18px;
}

.coordinator{
	width: fit-content;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	margin: 40px auto 0 auto;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 19px;
	font-weight: 400;
	color: #333333;
	text-align: center;
}

.coordinator i{
	font-size: 24px;
	color: #cc5200;
	flex-shrink: 0;
}

.coordinator a{
	text-decoration: none;
	color: inherit;
	display: inline-block;
	transition: color 0.25s ease, transform 0.25s ease;
}

.coordinator a:hover{
	color: #cc5200;
	transform: scale(1.04);
}

.gallery-title{
	width: min(1100px, 85%);
	margin: 0 auto 30px auto;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.gallery-title span{
	height: 3px;
	background: rgba(11,122,122,0.7);
}

.gallery-title h2{
	font-family: "Times New Roman", serif;
	font-size: clamp(32px, 4vw, 46px);
	font-weight: 700;
	color: #006666;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

.gallery-container{
	width: min(1100px, 85%);
	min-height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: center;
	padding: 0 0 70px 0;
	margin: 0 auto;
}

.gallery{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	grid-gap: 30px;
	margin-bottom: 10px;
}

.gallery img{
	width: 100%;
	height: auto;
	padding: 2px;
	background-color: white;
	box-shadow: 0 5px 20px rgba(0,0,0,0.7);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery img:hover{
	transform: scale(1.04);
	box-shadow: 0 5px 20px rgba(0,0,0,1);
}

@media screen and (max-width: 1150px){

	.three-columns{
		grid-template-columns: 1fr;
		width: min(760px, 100%);
		margin-left: auto;
		margin-right: auto;
	}

	.activities-band{
		grid-template-columns: repeat(3, 1fr);
	}

	.activity-item:nth-child(3){
		border-right: none;
		border-top-right-radius: 12px;
	}

	.activity-item:nth-child(4){
		border-top-left-radius: 12px;
		border-bottom: none;
	}

	.activity-item:nth-child(1),
	.activity-item:nth-child(2),
	.activity-item:nth-child(3){
		border-bottom: 1px solid rgba(0,102,102,0.14);
	}

	.parallel-section{
		grid-template-columns: 1fr;
		gap: 60px;
		width: min(900px, 100%);
		margin-left: auto;
		margin-right: auto;
	}

	.territory-text-section,
	.territory-text-section h2,
	.territory-text-section p{
		text-align: center;
	}

	.themes-content h2{
		text-align: center;
	}
}

@media screen and (max-width: 700px){

	.project-page{
		width: 88%;
		padding-top: 130px;
		padding-bottom: 65px;
	}

	.project-hero{
		margin-bottom: 45px;
	}

	.project-hero h1{
		font-size: 39px;
	}

	.project-subtitle{
		gap: 8px;
	}

	.project-subtitle span{
		width: 22px;
	}

	.project-subtitle h2{
		font-size: 16px;
	}

	.project-quote{
		font-size: 31px;
		line-height: 1.35;
	}

	.intro-text{
		margin-bottom: 55px;
	}

	.intro-text p{
		font-size: 18px;
		line-height: 1.6;
	}

	.info-column{
		padding: 26px 22px;
	}

	.info-column h3{
		font-size: 27px;
	}

	.check-list li,
	.icon-list li{
		font-size: 17px;
	}

	.activities-section h2,
	.themes-content h2,
	.territory-text-section h2,
	.vision-section h2,
	.gallery-title h2{
		font-size: 31px;
	}

	.activities-band{
		grid-template-columns: 1fr;
		border: none;
		background: transparent;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		gap: 52px;
		overflow: visible;
		margin-top: 52px;
	}

	.activity-item{
		min-height: auto;
		border-right: none !important;
		border-bottom: none !important;
		border-radius: 14px;
		background: rgba(255,255,255,0.72);
		box-shadow: 0 6px 18px rgba(0,0,0,0.09);
		padding: 56px 22px 26px 22px;
	}

	.activity-item p{
		font-size: 16.5px;
	}

	.parallel-section{
		gap: 55px;
	}

	.territory-text-section,
	.territory-text-section h2,
	.territory-text-section p{
		text-align: center;
	}

	.territory-text-section p{
		font-size: 18px;
		line-height: 1.6;
	}

	.themes-content{
		padding: 34px 24px;
	}

	.themes-list li{
		font-size: 17px;
	}

	.vision-section{
		padding: 0;
	}

	.vision-section p{
		font-size: 18.5px;
		line-height: 1.6;
	}

	.coordinator{
		font-size: 17px;
	}

	.gallery-title{
		margin-top: 70px;
		margin-bottom: 35px;
		gap: 14px;
	}

	.gallery-title span{
		width: 35px;
	}

	.gallery-title h2{
		font-size: 30px;
	}

	.gallery{
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 15px;
	}

	.gallery img{
		height: 170px;
	}

	.gallery img:hover{
		transform: none;
	}
}

@media screen and (max-width: 380px){

	.project-page{
		width: 92%;
	}

	.project-hero h1{
		font-size: 35px;
	}

	.project-quote{
		font-size: 28px;
	}

	.activity-item h3{
		font-size: 20px;
	}

	.activity-item p{
		font-size: 15.5px;
	}

	.territory-text-section p,
	.vision-section p{
		font-size: 17px;
	}

	.gallery{
		grid-template-columns: 1fr;
	}
}