:root {
    --maroon: #800000;
    --silver: #C0C0C0;
    --dark-silver: #A9A9A9;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
}

.text-maroon {
    color: var(--maroon);
}

.bg-maroon {
    background-color: var(--maroon);
}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                url('http://static.photos/legal/1200x630/1') no-repeat center center;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
    width: 100%;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}
/* Service Cards */
.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--maroon);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--maroon);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.values-list li:before {
    content: '•';
    color: var(--maroon);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--maroon);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--maroon);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--maroon);
}

.cta-inverse {
    background-color: white;
    color: var(--maroon);
    border-color: white;
}

.cta-inverse:hover {
    background-color: transparent;
    color: white;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card, .hero-section, .values-section {
    animation: fadeIn 0.6s ease forwards;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.3s; }
.service-card:nth-child(5) { animation-delay: 0.4s; }
.service-card:nth-child(6) { animation-delay: 0.5s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh;
        padding-top: 4rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}