﻿/* Hero Section for Common Scams */
		.scams-hero {
			position: relative;
			height: 80px;
			margin-top: 0;
			padding-top: 0;
			/* background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); */
			display: flex;
			align-items: center;
			text-align: center;
			color: #000;
		}

		.scams-hero-content {
			position: relative;
			z-index: 2;
			max-width: 800px;
			margin: 0 auto;
			padding: 0 20px;
		}

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

		.scams-hero p {
			font-size: 1.2rem;
			margin-bottom: 2rem;
			opacity: 0.9;
		}

		/* Common Scams Section */
		.common-scams-section {
			padding: 5px 0;
			background: #ffffff;
			margin-bottom: 30px;
		}

		.scams-grid {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 40px;
			margin-top: 20px;
		}

		.scam-card {
			background: #fff;
			/* border-radius: 12px; */
			/* padding: 30px; */
			/* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
			transition: all 0.3s ease;
			border: 0px solid #eee;
		}

		.scam-card:hover {
			transform: translateY(-5px);
			box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
		}

		.scam-image {
			width: 100%;
			height: 200px;
			object-fit: cover;
			/* border-radius: 8px; */
			margin-bottom: 20px;
		}

		.scam-title {
			font-size: 1.4rem;
			color: #2c3e50;
			font-weight: 600;
			margin-bottom: 15px;
			line-height: 1.3;
		}

		.scam-excerpt {
			color: #666;
			line-height: 1.6;
			font-size: 0.95rem;
			margin-bottom: 20px;
		}

		.scam-read-more {
			background: #4ADE80;
			color: white;
			padding: 10px 20px;
			border-radius: 6px;
			text-decoration: none;
			font-weight: 500;
			transition: all 0.3s ease;
			display: inline-block;
		}

		.scam-read-more:hover {
			background: #22c55e;
			transform: translateY(-1px);
		}

		/* CTA Section */
		.scams-cta {
			padding: 80px 0;
			background: #3EA74C;
			color: #fff;
			text-align: center;
		}

		.scams-cta h2 {
			font-size: 2.5rem;
			color: #fff;
			margin-bottom: 20px;
			font-weight: 700;
		}

		.scams-cta p {
			font-size: 1.1rem;
			margin-bottom: 30px;
			max-width: 600px;
			margin-left: auto;
			margin-right: auto;
		}

		/* Responsive Design */
		@media (max-width: 992px) {
			.scams-grid {
				grid-template-columns: repeat(2, 1fr);
				gap: 30px;
			}
		}

		@media (max-width: 768px) {
			.mobile-menu-toggle {
				display: block;
			}

			.scams-hero h1 {
				font-size: 2.5rem;
			}

			.scams-grid {
				grid-template-columns: 1fr;
				gap: 30px;
			}

		}

		@media (max-width: 480px) {
			.scams-hero h1 {
				font-size: 2rem;
			}

			.scams-hero p {
				font-size: 1rem;
			}
		}