.contact-wrapper {
	padding: 0;
}
.section {
	background: #1e1e1e;
	border: 1px solid #222;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 25px;
}
.section h2 {
	margin-top: 0;
	color: #00ffc3;
}
.team-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
	overflow-x: auto;
}
.team-list li {
	background: #222;
	padding: 12px 16px;
	border-radius: 8px;
	min-width: 100px;
	text-align: center;
	flex: 0 0 auto;
}
.team-list li img {
	width: 200px;
	height: 300px;
	object-fit: cover;
	border-radius: 10%;
	display: block;
	margin: 0 auto 6px;
}
.team-list li span {
	display: block;
	font-weight: bold;
	color: #00ffc3;
	margin-bottom: 4px;
}
.method-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.method {
	flex: 1 1 260px;
	background: #222;
	padding: 18px;
	border-radius: 10px;
	min-width: 240px;
}
.method h3 {
	margin-top: 0;
	color: #ffb400;
}
.method a {
	color: #00ffc3;
	text-decoration: none;
	font-weight: bold;
}
.method a:hover {
	text-decoration: underline;
	color: #fff;
}
.form-row {
	margin-bottom: 12px;
}
.form-row label {
	display: block;
	margin-bottom: 4px;
	font-weight: bold;
}
.form-row input,
.form-row textarea {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #333;
	background: #181818;
	color: #eee;
	box-sizing: border-box;
}
.form-row textarea {
	min-height: 120px;
	resize: vertical;
}
.button-send {
	background: #00ffc3;
	color: #111;
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	font-weight: bold;
	cursor: pointer;
}
.button-send:hover {
	background: #00bfa5;
}
.notice {
	font-size: 13px;
	color: #888;
	margin-top: 10px;
}
.banner {
    text-align: center;
    background-color: #2b2b2b;
    height: 35vh;
    color: #aaa;
    line-height: 90px;
}
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.75);
}
.banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffc3;
    font-size: 32px;
    font-weight: bold;
    text-shadow: 0 0 8px #00ffc3;
}