body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
}

.navbar {
    border-bottom: 1px solid #eee;
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
}

section {
    padding: 60px 0;
    scroll-margin-top: 80px;
}

#contact-section {
    background-color: #f9f9f9;
    border-radius: 16px;
    padding: 40px;
}

.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    border-color: #000;
    box-shadow: none;
}

.btn-dark {
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
}

.nav-link {
    font-size: 0.9rem;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    padding: 4px 0;
    /* Tighter list spacing */
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: "•";
    color: #ccc;
    font-weight: bold;
    display: inline-block;
    width: 1.2em;
}

.img-container {
    position: relative;
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    margin-top: 2rem;
    /* Added margin top since it's now below text */
    margin-bottom: 2rem;
    /* Mask creates smooth transitions at both edges */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 50%, transparent 100%);
}

.hero-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}