body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    background-image: url('../images/digitization-background.jpg');
    background-size: cover;
    background-attachment: fixed;
    line-height: 1.6;
    color: #333;
}

.digitization-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    font-family: 'Fraunces Variable', 'Zodiak', serif;
    font-size: 4.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.pricing {
    margin: 2rem 0;
}

.pricing h2 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.pricing ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.pricing li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-info h2 {
    font-family: 'Georgia', serif;
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: bold;
}

.warning {
    margin: 2rem 0;
}

.contact {
    margin-top: 2rem;
}

.contact a {
    color: #0066cc;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer styles to match the sample */
.site-footer {
    background: rgba(255, 235, 205, 0.9);
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-brand h2 {
    font-family: 'Fraunces Variable', 'Zodiak', serif;
    font-size: 2rem;
    margin: 0;
    font-weight: 500;
}

.footer-content h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.footer-content a {
    color: #333;
    text-decoration: none;
    display: block;
}

.footer-content a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .digitization-content {
        padding: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }

    .pricing li {
        margin-bottom: 1rem;
    }
}