.services-container {
    max-width: 1000px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
}

.service-section {
    margin-bottom: 3rem;
}

.service-section h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.3rem;
}

.service-section h3 {
    font-family: 'Playfair Display', serif;
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.service-content {
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.service-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.service-content ul {
    list-style-type: none;
    padding: 0;
}

.service-content ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.3;
}

.service-content ul li:before {
    content: "•";
    color: #333;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        padding: 0 1rem;
    }

    .service-section h2 {
        font-size: 1.8rem;
    }

    .service-section h3 {
        font-size: 1.1rem;
    }

    .service-content {
        padding: 1.2rem;
    }

    .service-content h4 {
        font-size: 1.1rem;
    }
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-left, .footer-right {
    padding: 2rem;
    background-color: #444;
    border-radius: 4px;
}

.footer-right {
    text-align: left;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-right ul li {
    margin-bottom: 0.5rem;
}

.footer-right ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right ul li a:hover {
    color: #ddd;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
} 