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

        body {
            font-family: 'Georgia', serif;
            color: #1a1a1a;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .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;
        }

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

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

        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1a1a1a;
            letter-spacing: -0.5px;
vertical-align: middle
        }
.logo img {
	width: auto;
	max-height: 60px;
	float: left;
	margin: -8px 14px 0 0;
}
        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

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

        .nav-links a:hover {
            color: #1a1a1a;
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .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;
        }

        .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;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            color: white;
            z-index: 1;
            padding: 0 2rem;
            animation: fadeInUp 1s ease;
        }

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

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            letter-spacing: -1px;
            line-height: 1.2;
        }

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

        .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);
        }

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

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

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

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

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

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

        .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;
        }

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

        .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);
        }

.attorney-image img {
	max-height: 350px;
	width: auto;
}

        .attorney-info {
            padding: 2rem;
        }

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

        .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;
        }

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

        .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;
        }

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

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

        .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; }
        }

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

        .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);
            }
        }

        .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;
        }

        .modal-close:hover {
            color: #1a1a1a;
        }

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

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

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

        .profile-body {
            padding: 3rem;
        }

        .profile-section {
            margin-bottom: 2.5rem;
        }

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

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

        .profile-section ul {
            list-style: none;
            padding: 0;
        }

        .profile-section li {
            padding-left: 1.5rem;
            position: relative;
        }

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

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

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

        .contact-details p {
            margin-bottom: 0.5rem;
        }

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

        .contact-details a:hover {
            color: #203a43;
        }

        .insights-section {
            background: #f8f9fa;
        }

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

        .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;
        }

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

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

        .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;
        }

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

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

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

        .insight-category.legal-developments {
            background: #e67e22;
            color: white;
        }

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

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

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

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

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

        .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;
        }

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

        .read-more:hover {
            color: #203a43;
        }

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

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

        .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;
        }

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

        .practice-card:hover::before {
            transform: scaleX(1);
        }

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

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

        .why-choose {
            background: #f8f9fa;
        }

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

        .feature {
            text-align: center;
        }

        .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;
        }

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

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

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

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

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

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

        .contact-item {
            text-align: center;
        }

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

        .contact-item p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

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

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

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

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

            .hero p {
                font-size: 1.1rem;
            }

            .section {
                padding: 4rem 2rem;
            }

            .contact-info {
                gap: 2rem;
            }
        }