* {
	box-sizing: border-box;
	font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,
		Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif;
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.6;
	color: #333;
	background-color: #ffffff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Navigation */
.navbar {
	background-color: #1a365d;
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-menu a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-menu a:hover {
	color: #63b3ed;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 50%, #63b3ed 100%);
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 30px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary {
	background-color: #ffffff;
	color: #2b6cb0;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background-color: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.btn-secondary:hover {
	background-color: #ffffff;
	color: #2b6cb0;
}

/* About Section */
.about-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.about-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.section-description {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 3rem;
	font-size: 1.1rem;
	color: #555;
}

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

.stat-item {
	text-align: center;
	padding: 2rem;
	background-color: #ffffff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-item h3 {
	font-size: 2.5rem;
	color: #2b6cb0;
	margin-bottom: 0.5rem;
}

.stat-item p {
	font-size: 1.1rem;
	color: #555;
}

/* Mission Section */
.mission-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.mission-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
}

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

.mission-card {
	padding: 2rem;
	background-color: #f8f9fa;
	border-radius: 10px;
	border-left: 4px solid #2b6cb0;
	transition: all 0.3s ease;
}

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

.mission-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.mission-card p {
	color: #555;
	line-height: 1.8;
}

/* Contact Section */
.contact-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 50%, #63b3ed 100%);
	color: #ffffff;
}

.contact-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-section .section-description {
	color: #ffffff;
	opacity: 0.95;
}

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

.contact-item {
	text-align: center;
}

.contact-item h4 {
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
}

.contact-item a {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.contact-item a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

.social-links a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	padding: 10px 20px;
	border: 2px solid #ffffff;
	border-radius: 5px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background-color: #ffffff;
	color: #2b6cb0;
}

/* Footer */
.footer {
	background-color: #1a365d;
	color: #ffffff;
	padding: 2rem 0;
	text-align: center;
}

.footer p {
	margin: 0.5rem 0;
	opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.gallery-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

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

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
	aspect-ratio: 4/3;
	background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.gallery-placeholder span {
	font-size: 4rem;
}

.gallery-placeholder p {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1e40af;
}

/* Events Section */
.events-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.events-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

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

.event-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	display: flex;
	gap: 1.5rem;
	transition: all 0.3s ease;
}

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

.event-date {
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	color: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	min-width: 80px;
	height: fit-content;
}

.event-date .month {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
}

.event-date .day {
	display: block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 0.25rem;
}

.event-details {
	flex: 1;
}

.event-details h3 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
}

.event-location {
	color: #2b6cb0;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.event-description {
	color: #555;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.event-link {
	color: #2b6cb0;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.event-link:hover {
	color: #1e40af;
}

/* Testimonials Section */
.testimonials-section {
	padding: 80px 0;
	background-color: #ffffff;
}

.testimonials-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

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

.testimonial-card {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

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

.testimonial-content {
	margin-bottom: 1.5rem;
}

.testimonial-text {
	font-style: italic;
	color: #555;
	line-height: 1.8;
	font-size: 1.05rem;
}

.testimonial-text::before {
	content: '"';
	font-size: 2rem;
	color: #2b6cb0;
	line-height: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.author-info h4 {
	margin: 0;
	color: #2c3e50;
	font-size: 1.1rem;
}

.author-info p {
	margin: 0;
	color: #777;
	font-size: 0.9rem;
}

/* Membership Section */
.membership-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.membership-section h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.donation-highlight {
	max-width: 700px;
	margin: 3rem auto;
}

.donation-card {
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	color: #ffffff;
	border-radius: 15px;
	padding: 3rem;
	text-align: center;
	box-shadow: 0 10px 30px rgba(43, 108, 176, 0.3);
}

.donation-card h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.donation-description {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	opacity: 0.95;
}

.donation-card .benefits-list {
	text-align: left;
	max-width: 500px;
	margin: 2rem auto;
	color: #ffffff;
}

.donation-card .benefits-list li {
	color: #ffffff;
	padding: 0.5rem 0;
}

.donation-card .btn {
	background-color: #ffffff;
	color: #2b6cb0;
	margin-top: 1.5rem;
}

.donation-card .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.tax-note {
	margin-top: 1rem;
	font-size: 0.9rem;
	opacity: 0.9;
	font-style: italic;
}

.membership-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.membership-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
}

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

.membership-card.featured {
	border: 3px solid #2b6cb0;
	transform: scale(1.05);
}

.membership-card.featured:hover {
	transform: scale(1.08) translateY(-5px);
}

.badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	color: #ffffff;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.membership-card h3 {
	color: #2c3e50;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.price {
	font-size: 3rem;
	font-weight: 700;
	color: #2b6cb0;
	margin-bottom: 1.5rem;
}

.price span {
	font-size: 1.2rem;
	font-weight: 400;
	color: #777;
}

.benefits-list {
	list-style: none;
	padding: 0;
	margin: 2rem 0;
	text-align: left;
}

.benefits-list li {
	padding: 0.5rem 0;
	color: #555;
	line-height: 1.6;
}

.membership-card .btn {
	width: 100%;
	margin-top: 1rem;
}

.membership-form {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 3rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	margin-top: 4rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.membership-form h3 {
	text-align: center;
	color: #2c3e50;
	font-size: 2rem;
	margin-bottom: 1rem;
}

.form-intro {
	text-align: center;
	color: #555;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

.signup-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
	padding: 12px 15px;
	border: 2px solid #e2e8f0;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	width: 100%;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
	outline: none;
	border-color: #2b6cb0;
}

.btn-large {
	padding: 15px 40px;
	font-size: 1.1rem;
	margin-top: 1rem;
}

.checkbox-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #555;
	cursor: pointer;
	margin-top: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
	width: auto;
	cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.nav-menu {
		gap: 1rem;
		font-size: 0.9rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.about-section h2,
	.mission-section h2,
	.contact-section h2,
	.gallery-section h2,
	.events-section h2,
	.testimonials-section h2,
	.membership-section h2 {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 80%;
		text-align: center;
	}

	.event-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.membership-card.featured {
		transform: scale(1);
	}

	.membership-card.featured:hover {
		transform: translateY(-5px);
	}
}

/* Responsive Design */
@media screen and (max-width: 768px) {
	.nav-menu {
		gap: 1rem;
		font-size: 0.9rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.about-section h2,
	.mission-section h2,
	.contact-section h2 {
		font-size: 2rem;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.btn {
		width: 80%;
		text-align: center;
	}
}

@media screen and (max-width: 600px) {
	.nav-container {
		flex-direction: column;
		gap: 1rem;
	}

	.nav-menu {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		padding: 60px 0;
	}

	.about-section,
	.mission-section,
	.contact-section,
	.gallery-section,
	.events-section,
	.testimonials-section,
	.membership-section {
		padding: 60px 0;
	}
}
