body {
    background: #f7f2ee;
    margin: 0;
    padding: 0;
}
.feasibility-review {
    color: #3a2f2a;
}
/* Title */
.service-title {
    color: #2c3e2c;
    line-height: 1.1;
}
.service-subtitle {
    font-size: 20px;
    color: #8b7a6b;
    font-style: italic;
}
/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.content-image {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.content-image img {
    width: 100%;
    max-width: 480px;
}

.content-image.active {
    opacity: 1;
    transform: translateX(0);
}

.content-text {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.content-text.active {
    opacity: 1;
    transform: translateX(0);
}

.content-text p {
    background: white;
    padding: 18px 22px;
    border-left: 3px solid #b08b6a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    font-size: 16px;
    line-height: 1.9;
    color: #5c4f48;
}
.service-badge {
    font-size: 16px;
    letter-spacing: 3px;
    color: #b08b6a;
    display: block;
    padding-top: 64px;
}
/* Section Headers */
.section-header {
    color: #2c3e2c;
    border-bottom: 2px solid #e0d4c8;
    padding-bottom: 10px;
}
/* Scope List */
.scope-list {
    background: white;
    padding: 30px;
    border-left: 3px solid #b08b6a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    margin: 40px 0;
}

.scope-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 16px;
    color: #5c4f48;
    border-bottom: 1px dashed #e8dfd5;
}

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

.scope-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #b08b6a;
}

/* Deliverables Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 14px;
}

.deliverable-card {
    background: white;
    padding: 30px;
    border-left: 3px solid #b08b6a;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.deliverable-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e2c;
}

.deliverable-card p {
    font-size: 15px;
    color: #5c4f48;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: white;
    border: 2px solid #b08b6a;
    color: #7c5f48;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #b08b6a;
    color: white;
}

/* Back Link */
.back-link {
    text-align: center;
}

.back-link a {
    color: #8b7a6b;
    text-decoration: none;
    font-size: 14px;
}

.back-link a:hover {
    color: #b08b6a;
}

/* Responsive */
@media (max-width: 900px) {
    .content-layout,
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-title {
        font-size: 42px;
    }
    
    .content-image,
    .content-text {
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 600px) {
    .service-title {
        font-size: 36px;
    }
    
    .service-subtitle {
        font-size: 20px;
    }
}