* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body.page-home-alt {
	font-family: 'Georgia', serif !important;
	color: #1a1a1a;
	line-height: 1.6;
	overflow-x: hidden;
}

body.page-home-alt .header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	z-index: 1000;
	box-shadow: 0 2px 20px rgba(0,0,0,0.05);
	transition: all 0.3s ease;
}

body.page-home-alt .header.scrolled {
	box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}

body.page-home-alt .nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 3rem;
}

body.page-home-alt .logo {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: -0.5px;
}
body.page-home-alt .nav-links {
	display: flex;
	gap: 3rem;
	list-style: none;
}

body.page-home-alt .nav-links a {
	color: #4a4a4a;
	text-decoration: none;
	font-size: 0.95rem;
	font-family: 'Arial', sans-serif;
	transition: color 0.3s ease;
	position: relative;
}

body.page-home-alt .nav-links a:hover {
	color: #1a1a1a;
}

body.page-home-alt .nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #1a1a1a;
	transition: width 0.3s ease;
}

body.page-home-alt .nav-links a:hover::after {
	width: 100%;
}

body.page-home-alt .hero {
	/* margin-top: 90px; */
	height: 85vh;
	background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

body.page-home-alt .hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

body.page-home-alt .hero-content {
	max-width: 1200px;
	text-align: center;
	color: #fff;
	z-index: 1;
	padding: 0 2rem;
	animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body.page-home-alt .hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 1.2;
	color: #fff;
}

body.page-home-alt .hero p {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	font-family: 'Arial', sans-serif;
}

body.page-home-alt .cta-button {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: white;
	color: #1a1a1a;
	text-decoration: none;
	font-family: 'Arial', sans-serif;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

body.page-home-alt .cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

body.page-home-alt .section {
	padding: 6rem 3rem;
	max-width: 1400px;
	margin: 0 auto;
}

body.page-home-alt .section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	text-align: center;
	font-weight: 400;
}

body.page-home-alt .section-subtitle {
	text-align: center;
	color: #666;
	margin-bottom: 4rem;
	font-size: 1.1rem;
	font-family: 'Arial', sans-serif;
}

body.page-home-alt .practice-areas {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

body.page-home-alt .attorneys-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

body.page-home-alt .attorney-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	cursor: pointer;
}

body.page-home-alt .attorney-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

body.page-home-alt .attorney-image {
	width: 100%;
	height: 350px;
	background: linear-gradient(135deg, #2c5364, #203a43);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 6rem;
	color: rgba(255,255,255,0.3);
}

body.page-home-alt .attorney-image img {
max-height: 350px;
width: auto;
}

body.page-home-alt .attorney-info {
	padding: 2rem;
}

body.page-home-alt .attorney-info h3 {
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

body.page-home-alt .attorney-info .title {
	color: #666;
	font-size: 1rem;
	margin-bottom: 1rem;
	font-family: 'Arial', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

body.page-home-alt .attorney-info p {
	color: #666;
	font-family: 'Arial', sans-serif;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

body.page-home-alt .view-profile-btn {
	display: inline-block;
	color: #2c5364;
	font-family: 'Arial', sans-serif;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
}

body.page-home-alt .view-profile-btn::after {
	content: ' →';
	transition: transform 0.3s ease;
	display: inline-block;
}

body.page-home-alt .view-profile-btn:hover::after {
	transform: translateX(5px);
}

body.page-home-alt .modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 2000;
	overflow-y: auto;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

body.page-home-alt .modal.active {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 2rem;
}

body.page-home-alt .modal-content {
	background: white;
	max-width: 900px;
	width: 100%;
	border-radius: 8px;
	position: relative;
	margin: 2rem auto;
	animation: slideUp 0.4s ease;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body.page-home-alt .modal-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #666;
	transition: color 0.3s ease;
	z-index: 10;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

body.page-home-alt .modal-close:hover {
	color: #1a1a1a;
}

body.page-home-alt .profile-header {
	padding: 3rem;
	background: linear-gradient(135deg, #2c5364, #203a43);
	color: white;
	text-align: center;
}

body.page-home-alt .profile-header h2 {
	font-size: 2.5rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

body.page-home-alt .profile-header .title {
	font-size: 1.1rem;
	opacity: 0.9;
	font-family: 'Arial', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

body.page-home-alt .profile-body {
	padding: 3rem;
}

body.page-home-alt .profile-section {
	margin-bottom: 2.5rem;
}

body.page-home-alt .profile-section h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
	color: #1a1a1a;
}

body.page-home-alt .profile-section p,
body.page-home-alt .profile-section li {
	color: #666;
	font-family: 'Arial', sans-serif;
	line-height: 1.8;
	margin-bottom: 1rem;
}

body.page-home-alt .profile-section ul {
	list-style: none;
	padding: 0;
}

body.page-home-alt .profile-section li {
	padding-left: 1.5rem;
	position: relative;
}

body.page-home-alt .profile-section li::before {
	content: '▪';
	position: absolute;
	left: 0;
	color: #2c5364;
	font-size: 1.2rem;
}

body.page-home-alt .contact-details {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 8px;
	margin-top: 2rem;
}

body.page-home-alt .contact-details h3 {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

body.page-home-alt .contact-details p {
	margin-bottom: 0.5rem;
}

body.page-home-alt .contact-details a {
	color: #2c5364;
	text-decoration: none;
	transition: color 0.3s ease;
}

body.page-home-alt .contact-details a:hover {
	color: #203a43;
}

body.page-home-alt .insights-section {
	background: #f8f9fa;
}

body.page-home-alt .insights-filter {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

body.page-home-alt .filter-btn {
	padding: 0.75rem 1.5rem;
	background: white;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	font-family: 'Arial', sans-serif;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

body.page-home-alt .filter-btn:hover,
body.page-home-alt .filter-btn.active {
	background: #2c5364;
	color: white;
	border-color: #2c5364;
}

body.page-home-alt .insights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

body.page-home-alt .insight-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
}

body.page-home-alt .insight-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

body.page-home-alt .insight-category {
	padding: 0.5rem 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Arial', sans-serif;
}

body.page-home-alt .insight-category.firm-news {
	background: #4a90e2;
	color: white;
}

body.page-home-alt .insight-category.legal-developments {
	background: #e67e22;
	color: white;
}

body.page-home-alt .insight-category.legal-news {
	background: #27ae60;
	color: white;
}

body.page-home-alt .insight-content {
	padding: 2rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

body.page-home-alt .insight-date {
	color: #999;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
	font-family: 'Arial', sans-serif;
}

body.page-home-alt .insight-card h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	font-weight: 600;
	line-height: 1.3;
}

body.page-home-alt .insight-card p {
	color: #666;
	font-family: 'Arial', sans-serif;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

body.page-home-alt .read-more {
	color: #2c5364;
	font-family: 'Arial', sans-serif;
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	transition: all 0.3s ease;
}

body.page-home-alt .read-more::after {
	content: ' →';
	transition: transform 0.3s ease;
	display: inline-block;
	margin-left: 5px;
}

body.page-home-alt .read-more:hover {
	color: #203a43;
}

body.page-home-alt .read-more:hover::after {
	transform: translateX(5px);
}

body.page-home-alt .practice-card {
	padding: 3rem 2.5rem;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

body.page-home-alt .practice-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2c5364, #203a43);
	transform: scaleX(0);
	transition: transform 0.4s ease;
}

body.page-home-alt .practice-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	border-color: #2c5364;
}

body.page-home-alt .practice-card:hover::before {
	transform: scaleX(1);
}

body.page-home-alt .practice-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

body.page-home-alt .practice-card p {
	color: #666;
	font-family: 'Arial', sans-serif;
	line-height: 1.7;
}

body.page-home-alt .why-choose {
	background: #f8f9fa;
}

body.page-home-alt .features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-top: 3rem;
}

body.page-home-alt .feature {
	text-align: center;
}

body.page-home-alt .feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #2c5364, #203a43);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: white;
	transition: transform 0.3s ease;
}

body.page-home-alt .feature:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

body.page-home-alt .feature h3 {
	font-size: 1.3rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

body.page-home-alt .feature p {
	color: #666;
	font-family: 'Arial', sans-serif;
}

body.page-home-alt .contact-section {
	background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
	color: white;
	text-align: center;
}

body.page-home-alt .contact-section .section-subtitle {
	color: rgba(255,255,255,0.8);
}

body.page-home-alt .contact-info {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-top: 3rem;
	flex-wrap: wrap;
}

body.page-home-alt .contact-item {
	text-align: center;
}

body.page-home-alt .contact-item h4 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
	font-family: 'Arial', sans-serif;
}

body.page-home-alt .contact-item p {
	font-size: 1.2rem;
	opacity: 0.9;
}

body.page-home-alt .footer {
	background: #1a1a1a;
	color: white;
	text-align: center;
	padding: 3rem 2rem;
}

body.page-home-alt .footer p {
	opacity: 0.7;
	font-family: 'Arial', sans-serif;
}

@media (max-width: 768px) {
	body.page-home-alt .nav-links {
		display: none;
	}

	body.page-home-alt .hero h1 {
		font-size: 2.5rem;
	}

	body.page-home-alt .hero p {
		font-size: 1.1rem;
	}

	body.page-home-alt .section {
		padding: 4rem 2rem;
	}

	body.page-home-alt .contact-info {
		gap: 2rem;
	}
}