.presentation-container {
	max-width: 900px;
	margin: 0 auto;
}

.presentation-section {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.presentation-section h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #3498db;
	border-bottom: 3px solid #3498db;
	padding-bottom: 0.5rem;
}

.presentation-section h3 {
	font-size: 1.4rem;
	margin-top: 1.5rem;
	margin-bottom: 0.8rem;
	color: #ecf0f1;
}

.presentation-section p {
	margin-bottom: 1rem;
	line-height: 1.7;
	color: #d0d0d0;
	font-size: 1.05rem;
}

.presentation-section ul {
	margin-left: 2rem;
	margin-bottom: 1rem;
	line-height: 1.8;
}

.presentation-section li {
	margin-bottom: 0.6rem;
	color: #d0d0d0;
}

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

.info-card {
	background: rgba(52, 152, 219, 0.1);
	padding: 1.5rem;
	border-radius: 8px;
	border: 2px solid #3498db;
	text-align: center;
}

.info-card h3 {
	margin-top: 0;
	color: #3498db;
}

.info-card p {
	margin: 0;
	font-size: 1.2rem;
	color: #ecf0f1;
	font-weight: 500;
}

.cta-section {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 2px solid rgba(52, 152, 219, 0.3);
	text-align: center;
}

.cta-button {
	display: inline-block;
	background: #3498db;
	color: #ffffff;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	border-radius: 6px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid #3498db;
}

.cta-button:hover {
	background: #2980b9;
	border-color: #2980b9;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.presentation-container {
		padding: 0 1rem;
	}
	
	.presentation-section {
		padding: 1.5rem;
	}
	
	.presentation-section h2 {
		font-size: 1.6rem;
		margin-bottom: 0.8rem;
		padding-bottom: 0.4rem;
	}
	
	.presentation-section h3 {
		font-size: 1.2rem;
		margin-top: 1.2rem;
		margin-bottom: 0.6rem;
	}
	
	.presentation-section p {
		font-size: 0.95rem;
		line-height: 1.6;
		margin-bottom: 0.8rem;
	}
	
	.presentation-section ul {
		margin-left: 1.5rem;
		line-height: 1.6;
		margin-bottom: 0.8rem;
	}
	
	.presentation-section li {
		margin-bottom: 0.5rem;
		font-size: 0.95rem;
	}
	
	.info-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		margin: 1rem 0;
	}
	
	.info-card {
		padding: 1rem;
	}
	
	.info-card h3 {
		font-size: 1.1rem;
	}
	
	.info-card p {
		font-size: 1rem;
	}
	
	.cta-section {
		margin-top: 1.5rem;
		padding-top: 1.5rem;
	}
	
	.cta-button {
		padding: 0.7rem 1.2rem;
		font-size: 1rem;
		display: block;
		margin-bottom: 0.8rem;
	}
	
	.cta-button:hover {
		transform: none;
	}
}

@media (max-width: 480px) {
	.presentation-section {
		padding: 1rem;
	}
	
	.presentation-section h2 {
		font-size: 1.4rem;
	}
	
	.presentation-section h3 {
		font-size: 1.1rem;
	}
	
	.presentation-section p,
	.presentation-section li {
		font-size: 0.9rem;
	}
	
	.info-card {
		padding: 0.8rem;
	}
	
	.info-card h3 {
		font-size: 1rem;
	}
	
	.info-card p {
		font-size: 0.95rem;
	}
	
	.cta-button {
		padding: 0.6rem 1rem;
		font-size: 0.95rem;
	}
}