.elementor-75 .elementor-element.elementor-element-55167c7{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for container, class: .elementor-element-55167c7 */:root {
    --golden-green: #4A5D4E; /* Moss green from your branding */
    --golden-cream: #F9F7F2;
    --text-dark: #2D2D2D;
}

.working-from-golden {
    background-color: var(--golden-cream);
    padding: 80px 5%;
    font-family: 'Inter', sans-serif; /* Or your site's primary font */
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.sub-headline {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--golden-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 15px 0;
    line-height: 1.2;
}

.section-title strong {
    color: var(--golden-green);
}

.description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.amenities-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.amenities-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-button {
    background-color: var(--golden-green);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: 0.3s ease;
}

.cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.featured-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .amenities-list li {
        justify-content: center;
    }
}/* End custom CSS */