body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

h1, h2 {
    color: #2c3e50;
}

.announcement {
    margin-bottom: 2rem;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.contact-info h3 {
    margin-top: 0;
    color: #2c3e50;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.signature {
    margin-top: 2rem;
    font-style: italic;
}

.disclaimer {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
    
    body {
        font-size: 16px;
    }
}


/* Add these new styles to the existing CSS file */
.logo-container {
    width: 100%;
    max-width: 600px;
    height: 120px;
    margin: 0 auto 2rem;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.headshot-container {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Add these styles for when you have actual images */
.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.headshot-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.square-logo {
    width: 150px;
    height: 150px;
    margin: 2rem auto;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.square-logo a {
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.square-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.square-logo a:hover {
    opacity: 0.9;
}

/* Navigation Menu */
.nav-menu {
    background-color: #2c3e50;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
}

.nav-menu a:hover {
    background-color: #34495e;
    border-radius: 4px;
}

/* About Page Styles */
.about-content {
    padding: 2rem 0;
}

.practice-areas {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.practice-column {
    flex: 1;
}

.practice-column ul {
    list-style: none;
    padding-left: 0;
}

.practice-column li {
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

button[type="submit"] {
    background-color: #2c3e50;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #34495e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .practice-areas {
        flex-direction: column;
    }
}
/* Map Page Styles */
.map-content {
    padding: 2rem 0;
}

.address-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.directions-link {
    text-align: center;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #34495e;
    text-decoration: none;
}


.cta-button {
    text-align: center;
    margin: 2rem 0;
}

.contact-button {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #34495e;
    transform: scale(1.05);
    text-decoration: none;
}
.nav-menu {
    background-color: #2c3e50;
    width: 100%;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.nav-menu li {
    width: 100%;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 1rem;
    display: block;
    border-bottom: 1px solid #34495e;
}

.nav-menu a:hover {
    background-color: #34495e;
}

/* Desktop styles */
@media screen and (min-width: 768px) {
    .nav-menu ul {
        flex-direction: row;
        justify-content: center;
    }
    
    .nav-menu li {
        width: auto;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        border-bottom: none;
    }
}
