body {
    background: #f7f2ee;
    margin: 0;
    padding: 0;
}

.engagement-section {
    color: #3a2f2a;
}

/* Title */
.engagement-title {
    padding: 82px 0 0;
    text-align: center;
    color: #2c3e2c;
    font-weight: 400;
    letter-spacing: -0.02em;
}
.engagement-subtitle {
    font-size: 16px;
    text-align: center;
    color: #5c4f48;
    line-height: 1.8;
}
.pathways-highlight {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0 60px;
}
.pathway-tag {
    background: white;
    padding: 14px;
    border-radius: 60px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid #e0d4c8;
    font-weight: 500;
    color: #3a2f2a;
}
.pathway-tag strong {
    color: #b08b6a;
    font-weight: 600;
}
/* Services Grid - 2 columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    border: 1px solid #e8dfd5;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #b08b6a;
    box-shadow: 0 20px 35px rgba(176,139,106,0.12);
}

.service-card::after {
    content: "→";
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 24px;
    color: #d4c5b5;
    transition: all 0.3s ease;
    opacity: 0;
}

.service-card:hover::after {
    opacity: 1;
    right: 25px;
    color: #b08b6a;
}
.service-number {
    font-family: 'Marcellus', serif;
    font-size: 16px;
    color: #b08b6a;
    letter-spacing: 2px;
    display: block;
}
.service-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 30px;
    color: #2c3e2c;
    font-weight: 400;
}
.service-subtitle {
    font-size: 16px;
    color: #8b7a6b;
    margin-bottom: 5px;
    font-style: italic;
    border-bottom: 1px dashed #e0d4c8;
    padding-bottom: 5px;
}
.service-desc {
    font-size: 16px;
    line-height: 1.3;
    color: #5c4f48;
}
.service-link {
    display: inline-block;
    color: #b08b6a;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
}

/* Strategic cards different color */
.service-card.strategic {
    border-left: 4px solid #8a7a6a;
}

.service-card.strategic .service-number {
    color: #8a7a6a;
}

/* Section Divider */
.section-divider {
    text-align: center;
    position: relative;
}
.section-divider h2 {
    color: #2c3e2c;
    background: #f7f2ee;
    display: inline-block;
    padding: 0 30px;
    font-weight: 400;
}
.section-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dcd0c4;
    z-index: -1;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.cta-primary {
    display: inline-block;
    background: #b08b6a;
    color: white;
    padding: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(176,139,106,0.3);
}
.cta-primary:hover {
    background: #8b6d4e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176,139,106,0.4);
}
.cta-secondary {
    display: inline-block;
    background: white;
    color: #5c4f48;
    padding: 14px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid #dcd0c4;
}
.cta-secondary:hover {
    border-color: #b08b6a;
    transform: translateY(-2px);
}

.engagement-footer {
    text-align: center;
    margin: 14px;
    padding: 14px;
    background: white;
    border: 1px solid #e8dfd5;
    font-size: 16px;
    color: #5c4f48;
}
.engagement-footer strong {
    color: #2c3e2c;
}
/* Responsive */
@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .engagement-title {
        font-size: 42px;
    }
    .pathways-highlight {
        flex-direction: column;
        align-items: center;
    }
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    .service-card::after {
        display: none;
    }
}

@media (max-width: 500px) {
    .engagement-title {
        font-size: 36px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 24px;
    }
}