:root {
    --primary: #0A2647;
    --secondary: #B8860B;
    --text: #333;
    --light: #f5f5f5;
    --grey: #777;
    --white: #fff;
}

body {
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

.header {
    background: var(--primary);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

.hero {
    height: 60vh;
    background: linear-gradient(rgba(10, 38, 71, 0.7), rgba(10, 38, 71, 0.7)), url('/images/practice\ law\ firm.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin: 2rem 0;
    text-align: center;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 5%;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.icon {
    font-size: 2rem;
    color: var(--secondary);
}

.icon-text {
    margin-left: 10px;
}
