@charset "utf-8";
/* CSS Document */

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 100%;
	overflow-x: hidden;
}

body {
	background: #f7f3ea;
	color: #3b3326;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 1.6;
}

img {	
	height: auto;
}

a {
	color: inherit;
}

.center {
	text-align: center;
}

.page-wrapper {
	width: 100%;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

/* Header */
.site-header {
	width: 100%;
	background: linear-gradient(180deg, #ede7da 0%, #dfdcd4 100%);
	border-bottom: 1px solid #a0957e;
}

.header-inner {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	position: relative;
	background: #fff;
	box-shadow: 0 10px 30px rgba(55, 43, 22, 0.12);
}

#apDiv1 {
	position: absolute;
	top: 24px;
	left: 0;
	width: 229px;
	height: 122px;
	z-index: 99;
	padding-left: 50px;
}

.slideshow-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
}

#slideshow {
	width: 100% !important;
	max-width: 950px !important;
	height: 219px;
	position: relative;
	overflow: hidden;
	background: #dfdcd4;
}

#slideshow img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 219px !important;
	object-fit: cover;
	display: none;
}

#slideshow img.active {
	display: block;
}

@media only screen and (max-width: 700px) {
	#slideshow {
		height: 150px;
	}

	#slideshow img {
		height: 150px !important;
	}
}

.nav-wrap {
	width: 100%;
	background: #dfdcd4;
}

.main-spacer {
	height: 12px;
}

/* Main layout */
.site-main {
	flex: 1;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 12px 35px rgba(55, 43, 22, 0.10);
	overflow: hidden;
}

.content-layout {
	width: 100%;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 234px;
	gap: 28px;
	padding: 26px 24px 34px;
}

.content-main {
	min-width: 0;
}

.section-title {
	margin: 0 0 14px;
	font-size: 24px;
	line-height: 1.25;
	color: #3f341d;
}

.sidebar {
	min-width: 0;
}

/* Search box */
.search-card {
	width: 100%;
	max-width: 560px;
	margin: 24px 0 28px;
	padding: 22px;
	background: #fbf8ef;
	border: 1px solid #d7c98d;
	border-radius: 14px;
	box-shadow: 0 8px 22px rgba(55, 43, 22, 0.08);
}

.search-card-title {
	margin-bottom: 18px;
	font-size: 18px;
	color: #3f341d;
}

.search-grid {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	margin-bottom: 14px;
}

.search-grid label {
	text-align: right;
	color: #3b3326;
}

.search-grid input[type="text"] {
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #cfc4a8;
	border-radius: 8px;
	background: #fff;
	font-size: 15px;
	color: #3b3326;
	outline: none;
}

.search-grid input[type="text"]:focus {
	border-color: #8f7d44;
	box-shadow: 0 0 0 3px rgba(143, 125, 68, 0.16);
}

.search-buttons {
	display: flex;
	gap: 10px;
	margin-top: 20px;
	padding-left: 154px;
}

.search-buttons input[type="submit"],
.search-buttons input[type="reset"] {		
	border: 0;
	border-radius: 8px;
	background-color: #5e584a !important;
	color: #fff !important;
	cursor: pointer;
	font-size: 14px;
}

.search-buttons input[type="submit"]:hover,
.search-buttons input[type="reset"]:hover {
	background-color: #3f392f !important;
}

/* Info section */
.info-row {
	display: grid;
	grid-template-columns: 133px minmax(0, 1fr);
	gap: 22px;
	align-items: start;
	margin-top: 10px;
}

.photo-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 17px 0 12px 0;
}

.photo-row img {
	margin: 0 !important;
	border-radius: 8px;
	box-shadow: 0 5px 14px rgba(55, 43, 22, 0.16);
}

/* Footer */
.site-footer-rule {
	width: 100%;
	height: 1px;
	background: #a0957e;
	margin-top: 12px;
}

.site-footer {
	width: 100%;
	background: #dfdcd4;
}

.site-footer-inner {
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
}

/* Tablet */
@media only screen and (max-width: 900px) {
	.header-inner,
	.site-main,
	.site-footer-inner {
		max-width: calc(100% - 20px);
	}

	.content-layout {
		grid-template-columns: 1fr;
		padding: 22px 18px 30px;
	}

	.sidebar {
		width: 100%;
	}

	#apDiv1 {
		top: 18px;
		left: 18px;
		width: 190px;
		height: auto;
		padding-left: 0;
	}
}

/* Mobile */
@media only screen and (max-width: 700px) {
	body {
		font-size: 14px;
		line-height: 1.55;
	}

	.header-inner,
	.site-main,
	.site-footer-inner {
		max-width: 100%;
		border-radius: 0;
		box-shadow: none;
	}

	#apDiv1 {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: auto;
		padding: 14px;
		text-align: center;
		background: #fff;
	}

	#apDiv1 img {
		width: 80%;
		max-width: 220px;
		height: auto;
	}

	.slideshow-wrap {
		border-top: 1px solid #eee8dc;
	}

	.content-layout {
		display: block;
		width: 100%;
		padding: 18px 14px 28px;
	}

	.section-title {
		font-size: 21px;
	}

	.search-card {
		width: 100%;
		max-width: 100%;
		margin: 20px 0 24px;
		padding: 18px;
	}

	.search-card-title {
		font-size: 17px;
	}

	.search-grid {
		display: block;
		margin-bottom: 14px;
	}

	.search-grid label {
		display: block;
		text-align: left;
		margin-bottom: 5px;
	}

	.search-grid input[type="text"] {
		width: 100%;
		max-width: 100%;
	}

	.search-buttons {
		display: block;
		padding-left: 0;
		margin-top: 18px;
	}

	.search-buttons input[type="submit"],
	.search-buttons input[type="reset"] {
		width: 100% !important;
		margin-bottom: 10px;
	}

	.info-row {
		display: block;
		text-align: left;
	}

	.info-row .center {
		text-align: center;
		margin-bottom: 18px;
	}

	.photo-row {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		width: 100%;
	}

	.photo-row img {
		width: 100%;
		max-width: 100%;
		margin: 0 !important;
	}
}

@media only screen and (max-width: 380px) {
	.photo-row {
		grid-template-columns: 1fr;
	}

	.photo-row img {
		max-width: 180px;
		margin: 0 auto !important;
	}
}

.about-section {
		margin-bottom: 22px;
	}

	.about-section h2 {
		font-size: 16px;
		margin: 0 0 10px 0;
		color: #5e584a;
	}

	.database-list {
		margin: 12px 0 22px 20px;
		padding: 0;
	}

	.database-list li {
		margin-bottom: 16px;
		line-height: 1.5;
	}

	.membership-grid {
		display: grid;
		grid-template-columns: repeat(4, minmax(130px, 1fr));
		gap: 12px;
		margin: 14px 0 20px 0;
	}

	.membership-card {
		border: 1px solid #c7ba74;
		background: #f7f4ea;
		padding: 14px;
		text-align: center;
		box-sizing: border-box;
	}

	.membership-card strong {
		display: block;
		margin-bottom: 6px;
		color: #5e584a;
	}

	.membership-price {
		font-size: 18px;
		font-weight: bold;
	}

	@media screen and (max-width: 760px) {
		.membership-grid {
			grid-template-columns: repeat(2, minmax(130px, 1fr));
		}
	}

	@media screen and (max-width: 480px) {
		.membership-grid {
			grid-template-columns: 1fr;
		}
	}

.tips-intro {
		margin-bottom: 18px;
	}

	.tips-list {
		margin: 16px 0 26px 0;
		padding: 0;
		list-style: none;
	}

	.tips-list li {
		margin-bottom: 14px;
		padding: 14px 16px;
		border: 1px solid #c7ba74;
		background: #f7f4ea;
		line-height: 1.5;
		box-sizing: border-box;
	}

	.tips-list li strong {
		color: #5e584a;
	}

	@media screen and (max-width: 600px) {
		.tips-list li {
			padding: 12px;
		}
	}

.register-intro {
		margin-bottom: 22px;
		line-height: 1.5;
	}

	.membership-grid {
		display: grid;
		grid-template-columns: repeat(2, minmax(180px, 1fr));
		gap: 12px;
		margin: 14px 0 20px 0;
	}

	.membership-card {
		border: 1px solid #c7ba74;
		background: #f7f4ea;
		padding: 14px;
		box-sizing: border-box;
	}

	.membership-card strong {
		display: block;
		margin-bottom: 6px;
		color: #5e584a;
	}

	.membership-price {
		font-size: 18px;
		font-weight: bold;
	}

	.register-form-card {
		border: 1px dashed #c7ba74;
		background: #fbfaf5;
		padding: 18px;
		margin-top: 22px;
		box-sizing: border-box;
	}

	.form-section-title {
		font-weight: bold;
		text-decoration: underline;
		margin: 0 0 14px 0;
		color: #5e584a;
	}

	.form-grid {
		display: grid;
		grid-template-columns: 190px 1fr;
		gap: 12px 16px;
		align-items: center;
		margin-bottom: 24px;
	}

	.form-grid label {
		font-weight: bold;
	}

	.form-grid input[type="text"],
	.form-grid input[type="password"],
	.form-grid select {
		width: 100%;
		max-width: 360px;
		box-sizing: border-box;
		padding: 6px;
	}

	.form-note {
		font-size: 12px;
		color: #5e584a;
	}

	.required {
		font-weight: bold;
		color: #5e584a;
	}

	.terms-row {
		margin: 18px 0;
		line-height: 1.5;
	}

	.register-button {
		margin-top: 12px;
	}

	@media screen and (max-width: 760px) {
		.membership-grid {
			grid-template-columns: 1fr;
		}

		.form-grid {
			grid-template-columns: 1fr;
			gap: 6px;
		}

		.form-grid input[type="text"],
		.form-grid input[type="password"],
		.form-grid select {
			max-width: 100%;
		}
	}

	@media screen and (max-width: 420px) {
		.g-recaptcha {
			transform: scale(0.86);
			transform-origin: 0 0;
		}
	}

.contact-intro {
		margin-bottom: 22px;
		line-height: 1.5;
	}

	.contact-details {
		border: 1px solid #c7ba74;
		background: #f7f4ea;
		padding: 14px 16px;
		margin: 16px 0 24px 0;
		box-sizing: border-box;
		max-width: 420px;
	}

	.contact-details strong {
		color: #5e584a;
	}

	.contact-form-card {
		border: 1px dashed #c7ba74;
		background: #fbfaf5;
		padding: 18px;
		margin-top: 18px;
		box-sizing: border-box;
		max-width: 560px;
	}

	.contact-form-grid {
		display: grid;
		grid-template-columns: 150px 1fr;
		gap: 12px 16px;
		align-items: center;
	}

	.contact-form-grid label {
		font-weight: bold;
	}

	.contact-form-grid input[type="text"],
	.contact-form-grid textarea {
		width: 100%;
		box-sizing: border-box;
		padding: 6px;
	}

	.contact-form-grid textarea {
		min-height: 110px;
		resize: vertical;
	}

	.required {
		font-weight: bold;
		color: #5e584a;
	}

	.recaptcha-row {
		margin: 20px 0 16px 166px;
	}

	.submit-row {
		margin-left: 166px;
	}

	@media screen and (max-width: 760px) {
		.contact-form-card {
			max-width: 100%;
		}

		.contact-form-grid {
			grid-template-columns: 1fr;
			gap: 6px;
		}

		.recaptcha-row,
		.submit-row {
			margin-left: 0;
		}
	}

	@media screen and (max-width: 420px) {
		.g-recaptcha {
			transform: scale(0.86);
			transform-origin: 0 0;
		}
	}

.results-content {
		line-height: 1.5;
	}

	.results-index {
		margin: 18px 0;
	}

	.results-list {
		margin: 18px 0;
	}

	.results-seo {
		margin-top: 24px;
	}

	.member-callout {
		border: 1px solid #c7ba74;
		background: #f7f4ea;
		padding: 14px 16px;
		margin: 24px 0;
		box-sizing: border-box;
		line-height: 1.5;
	}

	.member-callout strong {
		color: #5e584a;
	}

	.back-to-top {
		margin: 20px 0 30px 0;
	}

	.hero-image-wrap {
		width: 100%;
		overflow: hidden;
	}

	.hero-image-wrap img {
		display: block;
		width: 100%;
		height: auto;
	}

	@media screen and (max-width: 760px) {
		.member-callout {
			padding: 12px;
		}
	}