/* Pacem in Terris Donate Page Styles */
/* General */
.pacem-donate-container {
	font-family: Arial, sans-serif;
	color: #333;
	background: #f9fafb;
	padding: 20px;
}

/* Hero */
.pacem-hero {
	text-align: center;
	background: #fff;
	padding: 50px 20px;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	margin-bottom: 40px;
}

.pacem-hero h1 {
	color: #006838;
/* Pacem green */
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.pacem-hero p {
	max-width: 600px;
	margin: 0 auto 20px;
	font-size: 1.1rem;
	color: #555;
}

.pacem-hero .pacem-btn {
	background: #006838;
	color: #fff;
	padding: 12px 24px;
	border-radius: 8px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
}

.pacem-hero .pacem-btn:hover {
	background: #004f2b;
}

/* Donation levels */
.pacem-donation-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	max-width: 900px;
	margin: 0 auto 40px;
}

.pacem-donation-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 3px 8px rgba(0,0,0,0.05);
	text-align: center;
}

.pacem-donation-card h2 {
	color: #006838;
	font-size: 1.8rem;
}

.pacem-donation-card p {
	color: #555;
	margin: 10px 0;
}

.pacem-donation-card .pacem-btn {
	margin-top: 10px;
	display: block;
	width: 100%;
}

/* Progress Bar */
.pacem-progress {
	max-width: 600px;
	margin: 40px auto;
	text-align: center;
}

.pacem-progress-bar {
	height: 20px;
	background: #e5e5e5;
	border-radius: 10px;
	overflow: hidden;
}

.pacem-progress-fill {
	height: 100%;
	background: #006838;
	width: 65%;
/* adjust based on campaign */
}

.pacem-progress-text {
	margin-top: 10px;
	font-weight: bold;
}

/* Testimonial */
.pacem-testimonial {
	background: #f0fdf4;
	padding: 40px 20px;
	text-align: center;
	font-style: italic;
	border-radius: 12px;
	margin: 40px auto;
	max-width: 700px;
}

.pacem-testimonial p {
	margin-top: 15px;
	font-weight: bold;
	font-style: normal;
	color: #333;
}

/* Givebutter embed */
.givebutter-embed {
	max-width: 600px;
	margin: 40px auto;
	text-align: center;
}

/* Thank You */
.pacem-thankyou {
	background: #fff;
	padding: 40px 20px;
	border-top: 2px solid #eee;
	text-align: center;
}

.pacem-thankyou h2 {
	color: #006838;
	font-size: 1.8rem;
	margin-bottom: 10px;
}