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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

header {
    background: #1a2c54;
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    max-width: 200px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    opacity: 0.8;
}

.disclaimer-banner {
    background: #fffbf0;
    border-left: 4px solid #ffc107;
    padding: 20px 30px;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.disclaimer-banner h3 {
    color: #8b6914;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.disclaimer-banner p {
    color: #8b6914;
    margin: 0;
    line-height: 1.6;
}

.hero {
    background: linear-gradient(135deg, #1a2c54 0%, #2d4373 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white !important;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white !important;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1a2c54;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

h2 {
    color: #1a2c54;
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 40px;
    font-weight: 700;
}

.container > h2:first-of-type {
    margin-top: 0;
}

h3 {
    color: #1a2c54;
    margin-top: 30px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.8;
}

ul, ol {
    margin-left: 40px;
    margin-bottom: 25px;
}

li {
    margin-bottom: 12px;
    line-height: 1.7;
}

strong {
    color: #1a2c54;
    font-weight: 600;
}

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

.practice-card, .blog-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.practice-card:hover, .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 44, 84, 0.1);
    border-color: #1a2c54;
}

.practice-card h3, .blog-card h3 {
    color: #1a2c54;
    font-size: 1.3rem;
    margin-top: 0;
}

.practice-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1a2c54;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 2px solid #dee2e6;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
}

.submit-btn {
    background: #1a2c54;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.submit-btn:hover {
    background: #2d4373;
}

.office-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
}

footer {
    background: #1a2c54;
    color: white;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

footer p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}
