/* General Styles */
body {
	font-family: 'Roboto', sans-serif;
	color: #333;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 80px 0;
}

.hero-section h1 {
	margin-bottom: 20px;
}

.hero-section .lead {
	font-size: 1.25rem;
	margin-bottom: 30px;
}

/* Section Titles */
.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #7f8c8d;
	margin-bottom: 40px;
}

/* Solution Cards */
.solution-card {
	background: white;
	border-radius: 10px;
	padding: 30px 20px;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	text-align: center;
}

.solution-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.solution-card .card-icon {
	color: #667eea;
	margin-bottom: 20px;
}

.solution-card .card-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #2c3e50;
}

.solution-card .card-description {
	color: #7f8c8d;
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.solution-card .card-features {
	list-style: none;
	padding: 0;
	margin-bottom: 25px;
	text-align: left;
}

.solution-card .card-features li {
	padding: 8px 0;
	color: #555;
	font-size: 0.9rem;
}

.solution-card .card-features i {
	color: #28a745;
	margin-right: 10px;
}

/* Benefits Section */
.benefits-section {
	background-color: #f8f9fa;
}

.benefit-item {
	padding: 20px;
}

.benefit-item h4 {
	font-weight: 600;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.benefit-item p {
	color: #7f8c8d;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 60px 0;
}

/* Buttons */
.btn-primary {
	background: #667eea;
	border: none;
	padding: 12px 30px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #5568d3;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
	border-color: #667eea;
	color: #667eea;
	transition: all 0.3s ease;
}

.btn-outline-primary:hover {
	background: #667eea;
	border-color: #667eea;
	color: white;
}

/* Navigation */
.navbar-dark .navbar-brand {
	font-weight: 700;
	font-size: 1.5rem;
}

.navbar-dark .nav-link {
	font-weight: 500;
	margin-left: 15px;
	transition: all 0.3s ease;
}

.navbar-dark .nav-link:hover {
	color: #667eea !important;
}

/* Footer */
footer a {
	transition: all 0.3s ease;
}

footer a:hover {
	color: #667eea !important;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
	.hero-section {
		padding: 50px 0;
		text-align: center;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.solution-card {
		margin-bottom: 20px;
	}
}